June 20, 2004
struct Foo
{
  alias int StructType;
}

Foo.StructType a; // OK

Foo b;

typeof(b).StructType c; // Not ok

June 21, 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
>