moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 20:51:46 +04:00
parent 96ed6ab4dc
commit b7929673b6
19 changed files with 5 additions and 0 deletions
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems/>
@@ -0,0 +1,4 @@
package p1;
public class Base {
protected void foo() {System.out.println("");}
}
@@ -0,0 +1,7 @@
package p2;
import p1;
public class Derived extends Base {
protected void foo() {
super.foo();
}
}