class Foo { void test() { int i = 5; i += (i = 10); System.out.println(i); } void test2() { int i = 5; i += (i = 10) + 1; System.out.println(i); } }