mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
22 lines
377 B
D
22 lines
377 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag9420.d(21): Error: function `diag9420.S.t3!().tx()` is not callable using argument types `(int)`
|
|
fail_compilation/diag9420.d(21): expected 0 argument(s), not 1
|
|
---
|
|
*/
|
|
|
|
mixin template Mixin() { }
|
|
struct S
|
|
{
|
|
template t3(T...)
|
|
{
|
|
void tx(T){}
|
|
alias t3 = tx;
|
|
}
|
|
}
|
|
void main()
|
|
{
|
|
S s1;
|
|
s1.t3!()(1);
|
|
}
|