d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag2452.d
blobe68e21746c638f021ef52a5f9d87a31f245f3b37
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag2452.d(14): Error: class `diag2452.C` interface function `void f(float p)` is not implemented
5 ---
6 */
8 interface I
10 void f(int p);
11 void f(float p);
14 class C : I
16 void f(int p) { }