d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail13498.d
blob27f47b3f7abd3f06512681e9c435e8f94cf8c698
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail13498.d(11): Error: cannot implicitly convert expression `"foo"` of type `string` to `int`
5 fail_compilation/fail13498.d(16): Error: template instance `fail13498.foo!()` error instantiating
6 ---
7 */
9 int foo()()
11 return "foo"; // should fail as well
14 void main()
16 foo();