digitalmars.D.bugs - Should this work?
- Patrick Down (7/7) Jun 20 2004 struct Foo
- Walter (3/10) Jun 20 2004 Yes, it should work.
struct Foo { alias int StructType; } Foo.StructType a; // OK Foo b; typeof(b).StructType c; // Not ok
Jun 20 2004
Yes, it should work. "Patrick Down" <pat codemoon.com> wrote in message news:Xns950EA5752C54Dpatcodemooncom 63.105.9.61...struct Foo { alias int StructType; } Foo.StructType a; // OK Foo b; typeof(b).StructType c; // Not ok
Jun 20 2004