mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
8 lines
355 B
Rust
8 lines
355 B
Rust
// normalize-stderr-test: "foo.random:.*\(" -> "foo.random: $$FILE_NOT_FOUND_MSG ("
|
|
// normalize-stderr-test: "os error \d+" -> "os error $$FILE_NOT_FOUND_CODE"
|
|
|
|
#![feature(debugger_visualizer)]
|
|
#![debugger_visualizer(random_file = "../foo.random")] //~ ERROR invalid argument
|
|
#![debugger_visualizer(natvis_file = "../foo.random")] //~ ERROR
|
|
fn main() {}
|