CompletionStyleTest -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / style / after21.java
blobf934d4f26cc86a8605b896f2dac069b43abe9d4f
1 public class GenericsSmartCast<T>{
2 public GenericsSmartCast(GenericsSmartCast<T> other) {}
4 public static Object foo() { return null; }
6 public static void main(String[] args) {
7 GenericsSmartCast<String> bar = new GenericsSmartCast<String>((GenericsSmartCast<String>) foo());