You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
17 lines
355 B
5 years ago
|
This issue type indicates that the program's execution doesn't reach
|
||
|
the exit node. Hence, we cannot compute a static bound for the
|
||
|
procedure.
|
||
|
|
||
|
|
||
|
Examples:
|
||
|
```java
|
||
|
void exit_unreachable() {
|
||
|
exit(0); // modeled as unreachable
|
||
|
}
|
||
|
|
||
|
|
||
|
void infeasible_path_unreachable() {
|
||
|
Preconditions.checkState(false); // like assert false, state pruned to bottom
|
||
|
}
|
||
|
```
|