mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
18 lines
324 B
Java
18 lines
324 B
Java
|
|
/* This file has been extracted from module UnreachableFixed. */
|
||
|
|
public class UnreachableFixed {
|
||
|
|
|
||
|
|
public static int return1972() {
|
||
|
|
int i = 0;
|
||
|
|
int j = 1;
|
||
|
|
while (j > 0) {
|
||
|
|
if (i == 1972) {
|
||
|
|
return i;
|
||
|
|
}
|
||
|
|
i = i + 1;
|
||
|
|
}
|
||
|
|
throw new RuntimeException("unreachable statement");
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|