rust/tests/crashes/120175.rs
Jonathan Brouwer 7db1840569
Changes to the uitests
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
2025-08-27 20:25:18 +02:00

13 lines
207 B
Rust

//@ known-bug: #120175
//@ needs-rustc-debug-assertions
#![feature(extern_types)]
#![feature(raw_dylib_elf)]
#[link(name = "bar", kind = "raw-dylib")]
extern "C" {
pub type CrossCrate;
}
fn main() {}