class Test { int local = 42; static int global = 42; void test(){ System.out.println(local + global); } }