blob: 0c2e4c268b6ecf7714932863512c6afcc98075c6 [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;
}
}