Maybe duplicate of or related to 2047/1994
template Foo(T)
{
}
class Test
{
alias Foo!(typeof(&this.bar)) foo;
int bar()
{
return 1;
}
}
Worked around by placing foo after bar.
Comment #1 by clugdbug — 2009-04-01T06:08:35Z
*** This bug has been marked as a duplicate of 1994 ***