3816e57fd2
This should be a snapshot transition.
13 lines
139 B
Rust
13 lines
139 B
Rust
// error-pattern::Unsatisfied precondition
|
|
|
|
fn foo(int x) {
|
|
log x;
|
|
}
|
|
|
|
fn main() {
|
|
let int x;
|
|
if (1 > 2) {
|
|
x = 10;
|
|
}
|
|
foo(x);
|
|
} |