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

31 lines
562 B
Rust
Raw Normal View History

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