Comment #0 by thelastmammoth — 2013-07-16T17:32:06Z
----
//OK:
alias T=typeof(x);
T x0;
@property auto x(){
return 1.1;
}
//NG:
struct A{
alias T=typeof(x); //Error: alias main.A.T recursive alias declaration
T x0;
@property auto x(){
return 1.1;
}
}
----