mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
216 B
D
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;
|
|
}
|