blob: f368032994145a42f07b2a4c6f645c12d4bdc3a7 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice10713.d(10): Error: no property `nonExistingField` for type `ice10713.S`
---
*/
struct S
{
void f(typeof(this.nonExistingField) a) {}
}