testdata for IDEA-146897

This commit is contained in:
Anna Kozlova
2015-12-07 10:35:33 +01:00
parent cde4b88ba3
commit f6f2b83801
2 changed files with 13 additions and 0 deletions
@@ -0,0 +1,9 @@
interface XYZ<<error descr="Cyclic inheritance involving 'X'"></error>X extends X> {
class Q {
public static void main(String[] args) {
<error descr="'XYZ' is abstract; cannot be instantiated">new XYZ<>()</error>;
}
}
}