find type parameters for class

This commit is contained in:
anna
2009-11-24 16:23:53 +03:00
parent ce736df9a2
commit 073e7392bb
13 changed files with 133 additions and 28 deletions
@@ -0,0 +1,13 @@
import java.util.*;
public class Super<T> {
}
class Test extends Super<String>{
void bar() {
List<String> l = new ArrayList<String>();
for (String t : l) {
System.out.println(t);
}
}
}