2011-12-22 19:53:53 -06:00
|
|
|
fn foo(x: int) { log(debug, x); }
|
2010-07-08 09:33:25 -05:00
|
|
|
|
2011-12-22 16:42:52 -06:00
|
|
|
fn main() {
|
|
|
|
let x: int;
|
|
|
|
if 1 > 2 {
|
|
|
|
#debug("whoops");
|
|
|
|
} else {
|
|
|
|
x = 10;
|
|
|
|
}
|
2012-06-30 06:23:59 -05:00
|
|
|
foo(x); //~ ERROR use of possibly uninitialized variable: `x`
|
2011-12-22 16:42:52 -06:00
|
|
|
}
|