xxxxxxxxxx
struct A
{
deprecated int a;
void fun()
a++; // HERE
alias b = a;
b++; // HERE
}
int a; // NOT HERE
A b;
b.a++; // HERE