mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-28 17:28:03 +00:00
Fix ClassCanBeTyped
This commit is contained in:
parent
5f6ca52acb
commit
903f9e8d4e
@ -15,14 +15,15 @@ public class ClassCanBeTyped {
|
||||
}
|
||||
do{
|
||||
this.y = this.y + 1;
|
||||
}while (this.y < 10);
|
||||
}while (this.y < 10)
|
||||
|
||||
if(this.x > 10) {
|
||||
this.x = 10;
|
||||
} else {
|
||||
this.x = 20;
|
||||
}
|
||||
int k = 0;
|
||||
int k;
|
||||
k = 0;
|
||||
for ( k = 0; k < 10; k = k+1) {
|
||||
if(k == 5) {
|
||||
return;
|
||||
@ -48,4 +49,4 @@ public class ClassCanBeTyped {
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user