October 17, 2006 A Problem with the Module Scope Operator | ||||
|---|---|---|---|---|
| ||||
int field=1;
struct S
{
int field;
}
S v;
int foo(int p1, int p2=0)
{
//...
}
int bar()
{
//...
foo(v. field)
//...
}
I needed too much time to find my typo.
| ||||
Copyright © 1999-2021 by the D Language Foundation
Permalink
Reply