rust/tests/crashes/120175.rs
Mads Marquart 07ed247d3c Ignore crash test that doesn't crash on Apple platforms
This wasn't caught by CI, because debug assertions aren't enabled there.
2025-09-27 14:41:09 +02:00

14 lines
270 B
Rust

//@ known-bug: #120175
//@ needs-rustc-debug-assertions
//@ ignore-apple (raw-dylib doesn't work on Apple targets yet)
#![feature(extern_types)]
#![feature(raw_dylib_elf)]
#[link(name = "bar", kind = "raw-dylib")]
extern "C" {
pub type CrossCrate;
}
fn main() {}