Fortify test.

This commit is contained in:
Camille GILLOT 2023-04-23 00:34:46 +02:00
parent 4e8b642646
commit b8c67d82d3
2 changed files with 15 additions and 7 deletions

View file

@ -5,6 +5,6 @@
#[macro_export]
macro_rules! new_scope {
() => {
let x = 1;
let x = 1; opaque(x);
}
}

View file

@ -79,22 +79,28 @@
// lldb-check:[...]#inc-loc2[...]
// lldb-command:next
// lldb-command:frame select
// lldb-check:[...]#inc-loc1[...]
// lldb-command:next
// lldb-command:frame select
// lldb-check:[...]#inc-loc2[...]
// lldb-command:next
// lldb-command:frame select
// lldb-check:[...]#inc-loc3[...]
macro_rules! foo {
() => {
let a = 1;
let b = 2;
let c = 3;
}
let a = 1; opaque(a);
let b = 2; opaque(b);
let c = 3; opaque(c);
};
}
macro_rules! foo2 {
() => {
foo!();
let x = 1;
let x = 1; opaque(x);
foo!();
}
};
}
fn main() {
@ -118,4 +124,6 @@ fn main() {
fn zzz() {()}
fn opaque(_: u32) {}
include!("macro-stepping.inc");