summaryrefslogtreecommitdiffstats
path: root/src/test/ui/invalid/invalid-debugger-visualizer-option.rs
blob: 5645a30ccee7d4d7b2ec3caff67a861e0682ab5b (plain)
1
2
3
4
5
6
7
// 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() {}