summary refs log tree commit diff
path: root/src/test/compile-fail/use-uninit-2.rs
blob: be9494536993e75c0a41b829fda98bd9a7624116 (plain)
1
2
3
4
5
// error-pattern:Unsatisfied precondition

fn foo(x: int) { log(debug, x); }

fn main() { let x: int; if 1 > 2 { x = 10; } foo(x); }