about summary refs log tree commit diff
path: root/tests/run-make/box-struct-no-segfault/rmake.rs
blob: 06dcf61e9ccd8262fc0fa68a8d32b701ef7840f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ needs-target-std
//
// The crate "foo" tied to this test executes a very specific function,
// which involves boxing an instance of the struct Foo. However,
// this once caused a segmentation fault in cargo release builds due to an LLVM
// incorrect assertion.
// This test checks that this bug does not resurface.
// See https://github.com/rust-lang/rust/issues/28766

use run_make_support::rustc;

fn main() {
    rustc().opt().input("foo.rs").run();
    rustc().opt().input("main.rs").run();
}