Community
Participate
Working Groups
3.4 In the following code it is possible to extract 'x' from '-b.x'. The result does not compile as the extracted method is created in A. public class A { public class P { int x; } public void foo() { P b= new P(); int x= -b.x; } }
fixed > 20070913