smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / ExplicitWildcardParam-out.java
blobac804139965089a44b5bc4c24986be895bf3e255
1 class Key<T> {
2 static <T> Key<T> create(String s);
5 class Foo {
6 <T> void putUserData(Key<T> key, T value) {}
9 putUserData(Key.<Object>create(<caret>), )