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