summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-prelude-core.rs
blob: 56206425f84c2aa7e33bdc35c6fb0bb96e4e35ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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
}