1 /*
2  * package g1.t.m.def is the package to define (def) generic (g1) types (t) (top level or
3  * members) with multiple (m) type parameters
4  *
5  * This type is a non-generic type which contains a generic member.
6  */
7 package g1.t.m.def;
8 
9 public class NonGeneric {
10 	public class GenericMember<T1, T2 extends Exception, T3 extends RuntimeException> {
11 		public T1 t1;
12 		public T2 t2;
13 		public T3 t3;
14 	}
15 }
16