CompletionStyleTest -> community

This commit is contained in:
peter
2009-10-15 19:04:15 +01:00
parent d41d5eecbb
commit fc5b2909d7
50 changed files with 718 additions and 0 deletions
@@ -0,0 +1,9 @@
public class GenericsSmartCast<T>{
public GenericsSmartCast(GenericsSmartCast<T> other) {}
public static Object foo() { return null; }
public static void main(String[] args) {
GenericsSmartCast<String> bar = new GenericsSmartCast<String>((<caret>) foo());
}
}