rust/src/test/run-pass/terminate-in-initializer.rs

31 lines
560 B
Rust
Raw Normal View History

// xfail-win32 leaks
// Issue #787
// Don't try to clean up uninitialized locals
use std;
fn test_break() { loop { let x: @int = break; } }
fn test_cont() { let mut i = 0; while i < 1 { i += 1; let x: @int = cont; } }
2011-09-02 15:34:58 -07:00
fn test_ret() { let x: @int = ret; }
fn test_fail() {
2012-02-18 16:34:42 -08:00
fn f() { let x: @int = fail; }
2012-06-30 16:19:07 -07:00
task::try(|| f() );
}
fn test_fail_indirect() {
2011-09-02 15:34:58 -07:00
fn f() -> ! { fail; }
2012-02-18 16:34:42 -08:00
fn g() { let x: @int = f(); }
2012-06-30 16:19:07 -07:00
task::try(|| g() );
}
fn main() {
test_break();
test_cont();
test_ret();
test_fail();
test_fail_indirect();
2011-09-02 15:34:58 -07:00
}