mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
279 B
Rust
19 lines
279 B
Rust
// run-pass
|
|
#![feature(lang_items, start)]
|
|
#![no_std]
|
|
|
|
extern crate std as other;
|
|
|
|
mod foo {
|
|
pub fn test() {
|
|
let x = core::cmp::min(2, 3);
|
|
assert_eq!(x, 2);
|
|
}
|
|
}
|
|
|
|
#[start]
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize {
|
|
foo::test();
|
|
0
|
|
}
|