2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2024-12-14 09:13:12 +01:00
|
|
|
#![feature(lang_items)]
|
2018-05-29 11:26:10 -07:00
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
|
|
extern crate std as other;
|
|
|
|
|
|
|
|
|
|
mod foo {
|
|
|
|
|
pub fn test() {
|
|
|
|
|
let x = core::cmp::min(2, 3);
|
|
|
|
|
assert_eq!(x, 2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-14 09:13:12 +01:00
|
|
|
fn main() {
|
2018-05-29 11:26:10 -07:00
|
|
|
foo::test();
|
|
|
|
|
}
|