summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/interfaceMethods/AnnotationTypeExtensionsNotSupported.java
blob: 258bf1132d5b9c10e553338f94ce400bddf4459c (plain)
1
2
3
4
5
6
7
8
9
@interface Example {

  public <error descr="Modifier 'static' not allowed here">static</error> String myMethod() {
    return "";
  }
  public <error descr="Modifier 'default' not allowed here">default</error> String myMethod1() {
    return "";
  }
}