1 module test;
2 
3 mixin template A() {
4 import test;
5 }
6 
7 struct B {
8 mixin A!();
9 }
10 
11 enum C = B.nonexistent;
12 
13