blob: c7018c95762b9bd8fefc9c3d4a4360b9839f3000 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail7861.d(17): Error: no property `nonexistent` for type `test.B`
---
*/
module test;
mixin template A() {
import test;
}
struct B {
mixin A!();
}
enum C = B.nonexistent;