smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / ExplicitWildcardArrayParam-out.java
blob5398df76b5773c709d5e0e7aebcfc9dee6bf3fe3
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.create(<caret>), )