AnonymousClasses supported

This commit is contained in:
Sergey Ignatov
2011-11-07 17:49:05 +04:00
parent 15cad77cd0
commit d36c2a46d3
7 changed files with 70 additions and 9 deletions
@@ -0,0 +1,6 @@
new Runnable() {
@Override
public void run() {
System.out.println("Run");
}
};
@@ -0,0 +1,5 @@
java.lang.Runnable() {
override public fun run() : Unit {
System.`out`?.println("Run")
}
}