mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
145 B
D
15 lines
145 B
D
class K
|
|
{
|
|
inout(int) f() inout
|
|
{
|
|
return var;
|
|
}
|
|
|
|
void bug()
|
|
{
|
|
auto d = &f;
|
|
d();
|
|
}
|
|
|
|
int var;
|
|
}
|