1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail25.d(14): Error: need 'this' for 'yuiop' of type 'int'
5 ---
6 */
7 
8 class Qwert
9 {
10     int yuiop;
11 
asdfg()12     static int asdfg()
13     {
14         return Qwert.yuiop + 105;
15     }
16 }
17