mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-28 15:58:03 +00:00
Updated the ClassCanBeTyped
This commit is contained in:
parent
ac9ebb04b3
commit
a4c3e931a0
@ -25,6 +25,13 @@ public class ClassCanBeTyped {
|
|||||||
public ClassCanBeTyped init(int x, int y) {
|
public ClassCanBeTyped init(int x, int y) {
|
||||||
return new ClassCanBeTyped(x, y);
|
return new ClassCanBeTyped(x, y);
|
||||||
}
|
}
|
||||||
|
public ClassCanBeTyped(int x) {
|
||||||
|
this.x = x;
|
||||||
|
int i;
|
||||||
|
b = b.getX().c.getC();
|
||||||
|
i = b.getX().c.getX();
|
||||||
|
}
|
||||||
|
|
||||||
public ClassCanBeTyped() {
|
public ClassCanBeTyped() {
|
||||||
this.x = 10;
|
this.x = 10;
|
||||||
int i;
|
int i;
|
||||||
@ -58,5 +65,17 @@ public class ClassCanBeTyped {
|
|||||||
return this.x;
|
return this.x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ClassCanBeTyped getC() {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getX() {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean methodCall() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user