blob: 3076fd2d32af005fab2c8654cfb38c156dc8cf88 [file] [log] [blame]
class Mapping {
private int myInt;
public void method(boolean b, int i, char c, double d, int[] ia, String s) {
myInt = b ? i + c - (int)d: ia.length + s.hashCode();
}
public void context() {
method(true || false, 5, 'z', 3.14, new int[] { 0, 1 }, "abc");
}
}