summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/interfaceMethods/staticMethod.java
blob: d1a1f41c7bc0d06b9aca6d9dc6c42d6609e322bd (plain)
1
2
3
4
interface Foo {
  public static void bar1() {}
  public <error descr="Illegal combination of modifiers: 'abstract' and 'static'">abstract</error> static void bar2() {}
}