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