mirror of
https://github.com/rust-lang/rust.git
synced 2026-07-24 08:36:32 -04:00
26 lines
450 B
Rust
26 lines
450 B
Rust
//@ ignore-gdb
|
|
|
|
//@ compile-flags:-g
|
|
|
|
// === LLDB TESTS =================================================================================
|
|
|
|
//@ lldb-command:run
|
|
|
|
//@ lldb-command:v pathbuf
|
|
//@ lldb-check:[...] "/some/path" [...]
|
|
//@ lldb-command:v path
|
|
//@ lldb-check:[...] "/some/path" [...]
|
|
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
let path = Path::new("/some/path");
|
|
let pathbuf = path.to_path_buf();
|
|
|
|
zzz(); // #break
|
|
}
|
|
|
|
fn zzz() {
|
|
()
|
|
}
|