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