blob: 42db97a292bed80b18d23c35a01ddbe855ba327e [file] [log] [blame] [edit]
// Passing invalid files to -Z ls (which lists the symbols
// defined by a library crate) used to cause a segmentation fault.
// As this was fixed in #11262, this test checks that no segfault
// occurs when passing the invalid file `bar` to -Z ls.
// See https://github.com/rust-lang/rust/issues/11259
//@ ignore-cross-compile
use run_make_support::{rfs, rustc};
fn main() {
rustc().input("foo.rs").run();
rustc().arg("-Zls=root").input("foo").run();
rfs::create_file("bar");
rustc().arg("-Zls=root").input("bar").run();
}