Skip to content

Instantly share code, notes, and snippets.

@GabrielL
Created February 17, 2012 10:32
Show Gist options
  • Save GabrielL/1852532 to your computer and use it in GitHub Desktop.
Save GabrielL/1852532 to your computer and use it in GitHub Desktop.
Errors in number of function not implemented in dmd
$ dmd -c toot.d
toot.d(6): Error: class toot.B interface function A.foo isn't implemented
toot.d(10): Error: class toot.C interface function A.foo isn't implemented
toot.d(10): Error: class toot.C interface function A.foo isn't implemented
toot.d(14): Error: class toot.D interface function A.foo isn't implemented
toot.d(10): Error: class toot.C interface function A.foo isn't implemented
toot.d(14): Error: class toot.D interface function A.foo isn't implemented
interface A
{
void foo();
}
class B : A
{
}
class C : B
{
}
class D : C
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment