Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
extern
/
extern-prelude-core.rs
blob: 05d3750ae656323987a13768e682533e157a32ea [
file
]
//@ run-pass
#![
no_std
]
extern
crate std
as
other
;
mod
foo
{
pub
fn
test
()
{
let
x
=
core
::
cmp
::
min
(
2
,
3
);
assert_eq
!(
x
,
2
);
}
}
fn
main
()
{
foo
::
test
();
}