Fix SimpleVerifier multiple dimensions merge
public static Serializable[] testMethod(boolean b) {
return b ? new int[0][0] : new System[0][0][0];
}
The built byte code in the test case might be a little different than the source above.
public static Serializable[] testMethod(boolean b) {
return b ? new int[0][0] : new System[0][0][0];
}
The built byte code in the test case might be a little different than the source above.