blob: 7c09bbb9cb9369435d18087b733433c953fa756c [file] [log] [blame]
public class EvaluationOrder
{
private static int first (int x, int y)
{
return x;
}
public static void main (String[] args)
{
int l = args.length;
/* This should print:
0
0
1
*/
System.out.println (l);
System.out.println (first (l, ++l));
System.out.println (l);
}
}