Hello. I have code like this:
class MyClass
{
package abstract {
void foo();
void bar();
...
}
}
I have error after compilation:
Error: function ...foo non-virtual functions cannot be abstract
Code is compiling successed if change it like this:
class MyClass
{
public abstract {
void foo();
void bar();
...
}
}
Is it bug or don't i know something about it?
PS: Sorry for my bad English.
PSPS: dmd v 2.060
