smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CastWith2TypeParameters.java
blob1e2d46d989af4f3c8775de146b870fbfd9ab29bd
1 interface Foo<T,V> {}
3 class Bar<T,V> {
4 Bar(Foo<T,V> foo) {}
7 class Main {
8 Foo foo;
9 Bar<String,String> bar = new Bar<String,String>((<caret>foo);