DEBSOURCES
Skip Quicknav
sources / eclipse-jdt-ui / 4.29-1 / org.eclipse.jdt.ui.tests.refactoring / resources / MoveInnerToTopLevel / test_nonstatic_9 / out / A.java
1234567891011
package p; class A{ void f(){ new Inner(this){ void ft(){ new Inner(A.this); } }; } }