Hi,
following coding shoud work, or?
It doesn't compile with v2.068.0.
Kind regards
André
interface IfStatement
{
void execute();
final void execute(T...)(T t)
{
execute();
}
}
class Statement: IfStatement
{
void execute(){}
}
void main()
{
new Statement().execute(1,"Hello World");
}