1 package cast_in;
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 = /*]*/x(2 * Integer.MAX_VALUE)/*[*/;
10 	}
11 }
12