smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / IDEADEV2626-out.java
blob86d5e639030ad47d7f619b1a3031f4ce7c3e38ce
1 class Generic<T> { }
3 class Other {
4 static <T> T take(Generic<T> thing) { return null; }
7 class Tester {
8 Generic<String> str;
9 void method() {
10 CharSequence x = Other.take(str)<caret>;