Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail25.d
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
;
}
}