mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
255 B
D
12 lines
255 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice11944.d(12): Error: template instance `doCommand!(func)` does not match template declaration `doCommand(f, T)(f, T arg)`
|
|
---
|
|
*/
|
|
|
|
void func(int var) {}
|
|
|
|
void doCommand(f, T)(f, T arg) {}
|
|
|
|
auto var = &doCommand!func;
|