Yah, we sorely need a way to undo an attribute. BTW "@undo" is short and sweet. -- Andrei
I thought reusing keywords is what you like:
Example #1:
----
pure:
nothrow:
// ... some stuff
default: // not pure/nothrow
----
Example #2:
----
class Foo {
final:
// ...
default: // virtual
// ...
}
----
