public class Foo { void test(int x) { new Object() { int data = x * 2; void test() { System.out.println(data); } }.test(); } }