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