In D2, what is the effect (if any) of 'scope' in the following situations?
scope int a;
struct B { ... }
scope B b;
scope int[] c;
// According to the spec, 'in' is shorthand for 'const scope'.
void foo(in char[] d) { ... }
Thanks,
-Lars