blob: e3a2d0817cef81153ddc4d368d9713391180eb92 [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;