summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/refactoring/pushDown/FunctionalExpressionDefaultMethod_after.java
blob: 50fd08d85e975ef2d552872888c667f8447aabab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
interface Base {
    void bar();
}

class Test {
  {
    Base base = () -> {};
  }
}

class Child implements Base {
    public void foo() {
    System.out.println("Hi there.");
}
}