blob: 480870e406ff16ab55cc316e5f7dd3c0d8f34886 [file] [log] [blame]
class K
{
inout(int) f() inout
{
return var;
}
void bug()
{
auto d = &f;
d();
}
int var;
}