Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/src/pkg/TestLocalClass.java

26 lines
340 B

package pkg;
import java.lang.Override;
import java.lang.Runnable;
public abstract class TestLocalClass {
void foo() {
int a =5;
class Local{
void foo() {
int b = 5;
int v = 5;
}
};
Local l = new Local();
l.foo();
}
void boo() {
int a =5;
}
void zoo() {
int a =5;
}
}