JavaCompilerCore/test/bytecode/LambdaExpr.jav
Fütterling, Franziska (WWI2012D) 3111d51005 GenCode: Versuch LambdaExpression umzusetzen, scheitert aber bislang an
nicht importierbaren Klassen aus BCEL
2015-07-08 15:00:47 +02:00

7 lines
116 B
Java

class LambdaExpr {
void method() {
Runnable r1 = () -> System.out.println("Hello world two!");
}
}