mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
244 B
D
12 lines
244 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice10713.d(11): Error: no property `nonExistingField` for type `ice10713.S`
|
|
fail_compilation/ice10713.d(9): struct `S` defined here
|
|
---
|
|
*/
|
|
|
|
struct S
|
|
{
|
|
void f(typeof(this.nonExistingField) a) {}
|
|
}
|