1 /* REQUIRED_ARGS:
2 PERMUTE_ARGS:
3 TEST_OUTPUT:
4 ---
5 fail_compilation/test15925.d(18): Error: undefined identifier `X`
6 fail_compilation/test15925.d(18):        while evaluating: `static assert(X == 1)`
7 ---
8 */
9 
Import()10 mixin template Import()
11 {
12     import imports.imp15925;
13 }
14 
15 class Foo
16 {
17     mixin Import!();
18     static assert(X == 1);
19 }
20