class Test { public static void main(String[] args) { final String s = "text"; class A { { System.out.println(s); } } } }