dmd/compiler/test/fail_compilation/fail325.d
2022-07-09 18:53:07 +02:00

13 lines
216 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail325.d(12): Error: template `fun(T = int)(int w, int z)` has no type
---
*/
void fun(T = int)(int w, int z) {}
void main()
{
auto x = cast(void function(int, int))fun;
}