mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-28 16:28:04 +00:00
make NewClass Test comply with our definition of fieldVarAccess
This commit is contained in:
parent
354502cc20
commit
1b87dfb78e
@ -2,11 +2,11 @@ public class NewClass {
|
|||||||
public int x;
|
public int x;
|
||||||
|
|
||||||
public NewClass() {
|
public NewClass() {
|
||||||
x = 6;
|
this.x = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int simple() {
|
public int simple() {
|
||||||
x = 4;
|
int x = 4;
|
||||||
NewClass y = new NewClass();
|
NewClass y = new NewClass();
|
||||||
return x + y.x;
|
return x + y.x;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user