about summary refs log tree commit diff
path: root/tests/ui/issues/issue-15562.rs
blob: d3a8f24c51b7efcaaef520e161721e74bb8bda90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ run-pass
//@ aux-build:issue-15562.rs


extern crate issue_15562 as i;

pub fn main() {
    unsafe {
        transmute();
        i::transmute();
    }
}

// We declare this so we don't run into unresolved symbol errors
// The above extern is NOT `extern "rust-intrinsic"` and thus
// means it'll try to find a corresponding symbol to link to.
#[no_mangle]
pub extern "C" fn transmute() {}