(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail25.d
/*
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;
    }
}