mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-27 08:38:03 +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 NewClass() {
|
||||
x = 6;
|
||||
this.x = 6;
|
||||
}
|
||||
|
||||
public int simple() {
|
||||
x = 4;
|
||||
int x = 4;
|
||||
NewClass y = new NewClass();
|
||||
return x + y.x;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user