Updated the ClassCanBeTyped

This commit is contained in:
ahmad 2024-05-12 23:00:25 +02:00
parent ac9ebb04b3
commit a4c3e931a0

View File

@ -25,6 +25,13 @@ public class ClassCanBeTyped {
public ClassCanBeTyped init(int x, int 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() {
this.x = 10;
int i;
@ -58,5 +65,17 @@ public class ClassCanBeTyped {
return this.x;
}
public ClassCanBeTyped getC() {
return c;
}
public int getX() {
return x;
}
public boolean methodCall() {
return false;
}
}