blob: cf56feecc53ff3d9bc90ab12ef69a2e2fee80120 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail319.d(16): Error: template instance `fail319.f!(int, int)` does not match template declaration `f(T...)()`
with `T = (int, int)`
must satisfy the following constraint:
` T.length > 20`
---
*/
void f(T...)() if (T.length > 20)
{}
void main()
{
f!(int, int)();
}