blob: 7393a6c4a6765665420fe9172e84ae03e8378a3c [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail25.d(14): Error: need 'this' for 'yuiop' of type 'int'
---
*/
class Qwert
{
int yuiop;
static int asdfg()
{
return Qwert.yuiop + 105;
}
}