blob: f2b1feccbe27d088597b8e2b539df0c92ba6551e (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class pr91114 {
public void bar() {
long before = 0;
long after = 0;
long x = (before - after); // doesn't fail without the parentheses!
System.out.println("... " + (before - after) + " ...");
}
}
|