blob: 11c0f0be3d86abfbf3280e08da5d1c97796ea055 [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;
}
}