smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / InferFromCall1.java
blob5e8b38988c58fffc754d02b7fb1d6a3830ca6985
1 class Key<T> {}
2 class Foo {
3 <T> void putUserData(Key<T> k, T t) {}
5 <T> Key<T> getKey(Key<T> t) {}
8 Key<Key<String>> k = new Key<Key<String>>();
9 putUserData(k, getKey(new <caret>));