blob: 5403d04509ac7ff5bd80c11cee6966e084d5a6e7 [file]
package annotations.tests.classfile.cases;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class TestFieldGeneric<T> {
String s;
List<String> list;
Set<TestFieldGeneric> set;
TestFieldGeneric<T> testFieldGeneric = new TestFieldGeneric<T>();
public TestFieldGeneric() {
}
Set<String> otherSet;
public String toString() {
return s;
}
Set<TestFieldGeneric<Set<TestFieldGeneric>>> nestedSet;
Map<Set<TestFieldGeneric>, TestFieldGeneric<T>> nestedMap;
}