Renamed test data folder
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import javaApi.Base;
|
||||
|
||||
class C extends Base {
|
||||
public void f() {
|
||||
Base other = Base();
|
||||
int value = other.getProperty() + getProperty();
|
||||
other.setProperty(1);
|
||||
setProperty(other.getProperty() + value);
|
||||
getBase(getProperty()).setProperty(0);
|
||||
}
|
||||
|
||||
private Base getBase(int i) {
|
||||
return new Base();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user