summary refs log tree commit diff
path: root/src/test/run-pass/c-stack-as-value.rs
blob: 1b10798166db3f76a20d381c4a34555b6d17cd05 (plain)
1
2
3
4
5
6
7
8
#[abi = "cdecl"]
extern mod rustrt {
    fn unsupervise();
}

fn main() {
    let _foo = rustrt::unsupervise;
}