1 package cast_out;
2 
3 public class TestInfixExpression2 {
x(long two)4 	long x(long two) {
5 		return two * Integer.MAX_VALUE;
6 	}
7 
foo()8 	void foo() {
9 		long much = (long) (2 * Integer.MAX_VALUE) * Integer.MAX_VALUE;
10 	}
11 }
12