dmd/compiler/test/fail_compilation/fail25.d
Dennis c4e84f226e
Improve "need this" error (#15430)
* Improve "need `this`" error for function calls

* Improve "need `this`" error for member variables

* Improve "need this" error for address of variable

* Remove dead error
2023-07-20 12:41:02 +03:00

16 lines
237 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail25.d(14): Error: accessing non-static variable `yuiop` requires an instance of `Qwert`
---
*/
class Qwert
{
int yuiop;
static int asdfg()
{
return Qwert.yuiop + 105;
}
}