2017-02-23 13:25:26 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-06-03 16:54:08 -05:00
|
|
|
// compile-flags: -lrust_test_helpers
|
2017-02-23 13:25:26 -06:00
|
|
|
|
2017-06-03 16:54:08 -05:00
|
|
|
#[link(name = "rust_test_helpers", kind = "static")]
|
2017-02-23 13:25:26 -06:00
|
|
|
extern "C" {
|
2017-06-03 16:54:08 -05:00
|
|
|
pub fn rust_dbg_extern_identity_u32(x: u32) -> u32;
|
2017-02-23 13:25:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
2017-06-03 16:54:08 -05:00
|
|
|
rust_dbg_extern_identity_u32(42);
|
2017-02-23 13:25:26 -06:00
|
|
|
}
|
|
|
|
}
|