blob: d58b362315b0b5e9d31bb3137cc3f353a151e83e [file] [log] [blame]
/*
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);