blob: 597b94eb13d2fa66ec5035c7de5c9dbea8b8531f [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag9880.d(12): Error: template instance `diag9880.foo!string` does not match template declaration `foo(T)(int)`
with `T = string`
must satisfy the following constraint:
` is(T == int)`
---
*/
void foo(T)(int) if (is(T == int)) {}
void main() { alias f = foo!string; }