Renamed test data folder
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
public class AAA {
|
||||
private int myX = 42;
|
||||
|
||||
public int getX() {
|
||||
return myX;
|
||||
}
|
||||
|
||||
public void foo(AAA other) {
|
||||
System.out.println(myX);
|
||||
System.out.println(other.myX);
|
||||
myX = 10;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user