blob: 8a95b34e891efb66e544b838dd6cd19192cbe60f [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail4269e.d(10): Error: semicolon needed to end declaration of `Y` instead of `X5`
fail_compilation/fail4269e.d(10): Error: no identifier for declarator `X5`
---
*/
static if(is(typeof(X5.init))) {}
typedef Y X5;
void main() {}