Files
openide/java/java-tests/testData/refactoring/pushDown/FunctionalExpressionDefaultMethod_after.java
2014-04-08 12:18:33 +02:00

16 lines
181 B
Java

interface Base {
void bar();
}
class Test {
{
Base base = () -> {};
}
}
class Child implements Base {
public void foo() {
System.out.println("Hi there.");
}
}