blob: 88102ac8ff2661e695b92fc4edf9300e05a660b9 [file] [log] [blame]
/*
EXTRA_FILES: imports/imp15925.d
TEST_OUTPUT:
---
fail_compilation/test15925.d(18): Error: undefined identifier `X`
fail_compilation/test15925.d(18): while evaluating: `static assert(X == 1)`
---
*/
mixin template Import()
{
import imports.imp15925;
}
class Foo
{
mixin Import!();
static assert(X == 1);
}