smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / IDEADEV2626.java
blobca2e8213682b6584d7290a5b6afb6fe2bba32cb7
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(<caret>);