rust/tests/debuginfo/issue-57822.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.4 KiB
Rust
Raw Normal View History

// This test makes sure that the LLDB pretty printer does not throw an exception
2023-10-20 05:46:28 +08:00
// for nested closures and coroutines.
// Require a gdb that can read DW_TAG_variant_part.
//@ min-gdb-version: 8.2
//@ compile-flags:-g
// === GDB TESTS ===================================================================================
// gdb-command:run
// gdb-command:print g
// gdb-check:$1 = issue_57822::main::{closure_env#1} {f: issue_57822::main::{closure_env#0} {x: 1}}
// gdb-command:print b
2023-10-20 05:46:28 +08:00
// gdb-check:$2 = issue_57822::main::{coroutine_env#3}::Unresumed{a: issue_57822::main::{coroutine_env#2}::Unresumed{y: 2}}
// === LLDB TESTS ==================================================================================
// lldb-command:run
// lldb-command:v g
// lldbg-check:(issue_57822::main::{closure_env#1}) g = { f = { x = 1 } }
// lldb-command:v b
// lldbg-check:(issue_57822::main::{coroutine_env#3}) b =
#![feature(omit_gdb_pretty_printer_section, coroutines, coroutine_trait, stmt_expr_attributes)]
#![omit_gdb_pretty_printer_section]
2023-10-20 00:06:43 +08:00
use std::ops::Coroutine;
use std::pin::Pin;
fn main() {
let mut x = 1;
let f = move || x;
let g = move || f();
let mut y = 2;
let mut a = #[coroutine]
move || {
y += 1;
yield;
};
let mut b = #[coroutine]
move || {
Pin::new(&mut a).resume(());
yield;
};
zzz(); // #break
}
fn zzz() {
()
}