]> git.proxmox.com Git - rustc.git/blame - src/test/run-make/extern-fn-generic/test.rs
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / run-make / extern-fn-generic / test.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11extern crate testcrate;
12
13extern "C" fn bar<T>(ts: testcrate::TestStruct<T>) -> T { ts.y }
14
476ff2be 15#[link(name = "test", kind = "static")]
1a4d82fc
JJ
16extern {
17 fn call(c: extern "C" fn(testcrate::TestStruct<i32>) -> i32) -> i32;
18}
19
20fn main() {
21 // Let's test calling it cross crate
22 let back = unsafe {
23 testcrate::call(testcrate::foo::<i32>)
24 };
25 assert_eq!(3, back);
26
27 // And just within this crate
28 let back = unsafe {
29 call(bar::<i32>)
30 };
31 assert_eq!(3, back);
32}