blob: 474723d43ac4dba916fbe463bc4a64b04a84f3b1 [file] [log] [blame]
/*
* package g1.t.s.ref is the package to define types (t) which contain
* references (ref) to generic types (g1) which have only one single (s) type parameter
*
* Generic type which also contains both generic and non-generic member types.
*/
package g3.t.def;
public class GS<T> {
public T t;
public class Member {
public Object m;
}
public class Generic<V> {
public V v;
}
}