]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail5733.d
d: Synchronize testsuite with upstream dmd
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail5733.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail5733.d(12): Error: `opDispatch!"foo"` isn't a template
5 ---
6 */
7 struct Test
8 {
9 struct opDispatch(string dummy)
10 { enum opDispatch = 1; }
11 }
12 auto temp = Test().foo!(int);