Files
fernflower/test/test/misc/SuperTest.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

28 lines
365 B
Java

package test.misc;
import java.util.ArrayList;
public class SuperTest extends ArrayList {
public SuperTest() {
super(3);
super.modCount = 2;
SuperTest.super.size();
}
public int size() {
System.out.println("1");
return 0;
}
class SuperTest1 {
public void test() {
SuperTest.super.size();
SuperTest.super.modCount = 2;
}
}
}