1 /*
2 TEST_OUTPUT
3 ---
4 fail_compilation/diag9420.d(20): Error: function diag9420.S.t3!().tx () is not callable using argument types (int)
5 ---
6 */
7 
Mixin()8 mixin template Mixin() { }
9 struct S
10 {
t3S11     template t3(T...)
12     {
13         void tx(T){}
14         alias t3 = tx;
15     }
16 }
main()17 void main()
18 {
19     S s1;
20     s1.t3!()(1);
21 }
22