1 // REQUIRED_ARGS: -o-
2 /*
3 TEST_OUTPUT:
4 ----
5 fail_compilation/ice9545.d(13): Error: type int has no value
6 ----
7 */
8 
TS9 struct S { template T(X) { alias T = X; } }
10 
main()11 void main()
12 {
13     auto x1 = S.init.T!int; // ICE
14 }
15