summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/genericsHighlighting/IDEA57338.java
blob: 06e25b11f77250a884f9a80a407b340eeba372d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
abstract class A {
  abstract <T> void foo();
}

abstract class B extends A {
  void foo()
  {
    this.<Integer>foo();
  }
}

abstract class C {
  void foo()
  {
    this.<error descr="Method 'foo()' does not have type parameters"><Integer></error>foo();
  }
}