On Thu, 19 Mar 2009 10:05:59 +0100, Steve Teale <[email protected]> 
wrote:

YASQ - say I have

class Glob
{
   int a;
   this(int) { a = n; }
   int opCall(int n) { return n*a; }
}

Glob g = new Glob(2);
with (g)
{
   // should () have any special meaning here?
   int n = (3);
}

Glob g = new Glob(2);
with ( g ) {
   int n = 2 * ( 3 + 4 );
}

If this sets my n to 28, Imma be pissed.

Reply via email to