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

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