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

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/model/BindingKeyTests.java (+12 lines)
Lines 374-378 Link Here
374
			"Ljava/util/List;!Lp1/X;+Ljava/util/ArrayList;123;"
374
			"Ljava/util/List;!Lp1/X;+Ljava/util/ArrayList;123;"
375
		);
375
		);
376
	}
376
	}
377
	
378
	/*
379
	 * Method starting with an upper case corresponding to a primitive type
380
	 * (regression test for bug 94398 Error attempting to find References)
381
	 */
382
	public void test034() {
383
		assertBindingKeySignatureEquals(
384
			"(Ljava.lang.String;I)Z",
385
			"Lp1/X;.Set(Ljava/lang/String;I)Z"
386
		);
387
	}
388
	
377
		
389
		
378
}
390
}

Return to bug 94398