blob: f8e0bae50d977d8584b07f1f24e5e8c0a99991fa [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail16689.d(3): Error: static assert: "false"
fail_compilation/fail16689.d(6): instantiated from here: `Issue16689!()`
---
*/
#line 1
mixin template Issue16689()
{
static assert(false, "false");
}
mixin Issue16689!();