about summary refs log tree commit diff
path: root/tests/crashes/120175.rs
blob: e06da5a8e0ae026c1ad49bf3d632dfc3e16f40f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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() {}