blob: e68e21746c638f021ef52a5f9d87a31f245f3b37 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag2452.d(14): Error: class `diag2452.C` interface function `void f(float p)` is not implemented
---
*/
interface I
{
void f(int p);
void f(float p);
}
class C : I
{
void f(int p) { }
}