disable inline to anonymous for type params (IDEA-140846)

This commit is contained in:
Anna Kozlova
2015-05-29 17:42:26 +02:00
parent 63e11cc0f9
commit f2ebc25583
3 changed files with 11 additions and 0 deletions
@@ -0,0 +1,4 @@
class B<K>{}
class A<<caret>T> extends B<T> {
A<String> a;
}