d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail5733.d
blobd58b362315b0b5e9d31bb3137cc3f353a151e83e
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail5733.d(12): Error: `opDispatch!"foo"` isn't a template
5 ---
6 */
7 struct Test
9 struct opDispatch(string dummy)
10 { enum opDispatch = 1; }
12 auto temp = Test().foo!(int);