< prev index next >

test/compiler/c2/Test7125879.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 25,37 **** /** * @test * @bug 7125879 * @summary assert(proj != NULL) failed: must be found * ! * @run main/othervm -Xcomp Test7125879 */ public class Test7125879 { String var_1 = "abc"; public Test7125879() { var_1 = var_1.replaceAll("d", "e") + var_1; --- 25,39 ---- /** * @test * @bug 7125879 * @summary assert(proj != NULL) failed: must be found * ! * @run main/othervm -Xcomp compiler.c2.Test7125879 */ + package compiler.c2; + public class Test7125879 { String var_1 = "abc"; public Test7125879() { var_1 = var_1.replaceAll("d", "e") + var_1;
< prev index next >