124 lines
2.3 KiB
Rust
124 lines
2.3 KiB
Rust
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
||
|
// file at the top-level directory of this distribution and at
|
||
|
// http://rust-lang.org/COPYRIGHT.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||
|
// option. This file may not be copied, modified, or distributed
|
||
|
// except according to those terms.
|
||
|
|
||
|
// ignore-android: FIXME(#10381)
|
||
|
|
||
|
// compile-flags:-g
|
||
|
// gdb-command:rbreak zzz
|
||
|
// gdb-command:run
|
||
|
|
||
|
// FIRST ITERATION
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$1 = 0
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$2 = 1
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$3 = 101
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$4 = 101
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$5 = -987
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$6 = 101
|
||
|
// gdb-command:continue
|
||
|
|
||
|
|
||
|
// SECOND ITERATION
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$7 = 1
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$8 = 2
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$9 = 102
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$10 = 102
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$11 = -987
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$12 = 102
|
||
|
// gdb-command:continue
|
||
|
|
||
|
// gdb-command:finish
|
||
|
// gdb-command:print x
|
||
|
// gdb-check:$13 = 2
|
||
|
// gdb-command:continue
|
||
|
|
||
|
fn main() {
|
||
|
|
||
|
let mut x = 0;
|
||
|
|
||
|
while x < 2 {
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
|
||
|
x += 1;
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
|
||
|
// Shadow x
|
||
|
let x = x + 100;
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
|
||
|
// open scope within loop's top level scope
|
||
|
{
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
|
||
|
let x = -987;
|
||
|
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
}
|
||
|
|
||
|
// Check that we get the x before the inner scope again
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
}
|
||
|
|
||
|
zzz();
|
||
|
sentinel();
|
||
|
}
|
||
|
|
||
|
fn zzz() {()}
|
||
|
fn sentinel() {()}
|