1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* TEST_OUTPUT: --- fail_compilation/ice11553.d(22): Error: recursive template expansion while looking for A!().A() --- */ template A(alias T) { template A() { alias A = T!(); } } template B() { alias B = A!(.B); } static if (A!B) {}