blob: 04be1a51dfbbd1632e89756e6deae205c4371122 [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
*
* This type is a non-generic type which contains a generic member.
*/
package g1.t.s.def;
public class NonGeneric {
public class GenericMember<T> {
public T t;
}
}