Skip to content

Instantly share code, notes, and snippets.

@sinfu
Created August 20, 2010 20:49
Show Gist options
  • Save sinfu/541151 to your computer and use it in GitHub Desktop.
Save sinfu/541151 to your computer and use it in GitHub Desktop.
enum MyObject : Object
{
init = Object.init,
}
static assert(!is(MyObject == Object));
static assert(is(MyObject : Object));
void main()
{
MyObject mo = new MyObject;
Object o = mo; // ok
// mo = o; // error
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment