View | Details | Raw Unified | Return to bug 97275 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/model/BindingKeyTests.java (+10 lines)
Lines 429-432 Link Here
429
		);
429
		);
430
	}
430
	}
431
431
432
	/*
433
	 * Parameterized method with argument nested in another argument
434
	 * (regression test for bug 97275 method reference should not contain type variable anymore)
435
	 */
436
	public void test039() {
437
		assertBindingKeySignatureEquals(
438
			"<T:Ljava.lang.Object;>(Ljava.util.List<Ljava.lang.String;>;Ljava.lang.Integer;)V",
439
			"Lp1/X;.foo<T:Ljava/lang/Object;>(Ljava/util/List<TT;>;Ljava/lang/Integer;)V%<Ljava/lang/String;>)"
440
		);
441
	}
432
}
442
}

Return to bug 97275