Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
metadata-flag-frobs-symbols
/
bar.rs
blob: 1e6957a3694b60bd0b86bced1d9867e7d4fc4754 [
file
] [
log
] [
blame
] [
edit
]
extern
crate foo1
;
extern
crate foo2
;
fn
main
()
{
let
a
=
foo1
::
foo
();
let
b
=
foo2
::
foo
();
assert
!(
a
as
*
const
_
!=
b
as
*
const
_
);
}