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

12 lines
214 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail5733.d(12): Error: `opDispatch!"foo"` isn't a template
---
*/
struct Test
{
struct opDispatch(string dummy)
{ enum opDispatch = 1; }
}
auto temp = Test().foo!(int);