Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
linking
/
rlib-to-dylib-native-deps-inclusion-25185.rs
blob: bbcfcb75106f648f4d88207a0599c0578e6c3f17 [
file
] [
log
] [
blame
] [
edit
]
// https://github.com/rust-lang/rust/issues/25185
//@ run-pass
//@ aux-build:aux-25185-1.rs
//@ aux-build:aux-25185-2.rs
extern
crate aux_25185_2
;
fn
main
()
{
let
x
=
unsafe
{
aux_25185_2
::
rust_dbg_extern_identity_u32
(
1
)
};
assert_eq
!(
x
,
1
);
}