1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7861.d(17): Error: no property `nonexistent` for type `test.B`
5 ---
6 */
7 module test;
8
9 mixin template A() {
10 import test;
11 }
12
13 struct B {
14 mixin A!();
15 }
16
17 enum C = B.nonexistent;
18