Files
fernflower/test/test/misc/en/Foo.java
Roman Shevchenko 78ef309b3e project cleanup
- test classes (src/test/*) moved to separate root
- stray .class files dropped
- binary files (bin/, dist/full/, dist/obfuscated/) excluded from the repo
- .classpath and .gitignore updated accordingly
- invalid import statements removed
2014-05-19 15:04:06 +04:00

53 lines
664 B
Java

package test.misc.en;
class Foo {
public Foo() {}
public Foo(String test) {}
private void foo() {
System.out.println("qwe");
}
static class Bar extends Foo {
void bar() {
System.out.println("1");
//((Foo)this).foo();
}
}
static class Bar1 extends Bar {
void bar() {
super.bar();
//System.out.println("2");
//((Foo)this).foo();
}
}
static class Bar2 extends Bar1 {
void bar1() {
super.bar();
}
}
public static void main(String[] args) {
new Bar2().bar();
}
public int testfin() {
int i;
try {
System.out.println();
i = 0;
} finally {
System.out.println();
}
return i;
}
}