Lines Matching refs:T6348760

29  * @run main/othervm -Xfuture T6348760
32 public class T6348760<T> {
36 T6348760(T value) {
40 static void testByte(T6348760<Byte> i, T6348760<Byte> j, T6348760<Boolean> a) {
78 static void testShort(T6348760<Short> i, T6348760<Short> j, T6348760<Boolean> a) {
116 static void testInteger(T6348760<Integer> i, T6348760<Integer> j, T6348760<Boolean> a) {
154 static void testLong(T6348760<Long> i, T6348760<Long> j, T6348760<Boolean> a) {
192 static void testCharacter(T6348760<Character> i, T6348760<Character> j, T6348760<Boolean> a) {
230 static void testFloat(T6348760<Float> i, T6348760<Float> j, T6348760<Boolean> a) {
268 static void testDouble(T6348760<Double> i, T6348760<Double> j, T6348760<Boolean> a) {
306 static void testBoolean(T6348760<Boolean> i, T6348760<Boolean> j, T6348760<Boolean> a) {
349 testByte (new T6348760<Byte>((byte)42),
350 new T6348760<Byte>((byte)42),
351 new T6348760<Boolean>(true));
352 testShort (new T6348760<Short>((short)42),
353 new T6348760<Short>((short)42),
354 new T6348760<Boolean>(true));
355 testInteger (new T6348760<Integer>(42),
356 new T6348760<Integer>(42),
357 new T6348760<Boolean>(true));
358 testLong (new T6348760<Long>(42L),
359 new T6348760<Long>(42L),
360 new T6348760<Boolean>(true));
361 testCharacter(new T6348760<Character>('*'),
362 new T6348760<Character>('*'),
363 new T6348760<Boolean>(true));
364 testFloat (new T6348760<Float>(42.0F),
365 new T6348760<Float>(42.0F),
366 new T6348760<Boolean>(true));
367 testDouble (new T6348760<Double>(42.0D),
368 new T6348760<Double>(42.0D),
369 new T6348760<Boolean>(true));
370 testBoolean (new T6348760<Boolean>(true),
371 new T6348760<Boolean>(true),
372 new T6348760<Boolean>(true));