blob: 9393c85df32ea5132c8d3a57026e23d087ea00d8 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail273.d(10): Error: alias fail273.b recursive alias declaration
---
*/
// Issue 1054 - regression: circular aliases cause compiler stack overflow
alias a b;
alias b a;
b x; // ICE #1
a y; // ICE #2