Renamed test data folder

This commit is contained in:
Valentin Kipyatkov
2015-09-23 16:08:30 +03:00
parent ade9cbcafb
commit c8b6db4e57
57 changed files with 342 additions and 342 deletions
@@ -0,0 +1,20 @@
public class AAA {
protected int myX = 42;
public int getX() {
return myX;
}
public void foo(AAA other) {
System.out.println(myX);
System.out.println(other.myX);
myX = 10;
}
}
class BBB extends AAA {
void bar() {
System.out.println(myX);
myX = 10;
}
}