2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2012-09-04 18:40:11 -05:00
|
|
|
// aux-build:anon-extern-mod-cross-crate-1.rs
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
2017-10-22 22:01:00 -05:00
|
|
|
// ignore-wasm32-bare no libc to test ffi with
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate anonexternmod;
|
2012-09-04 18:40:11 -05:00
|
|
|
|
2013-10-02 22:00:54 -05:00
|
|
|
use anonexternmod::rust_get_test_int;
|
2012-09-04 18:40:11 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-05-24 21:35:29 -05:00
|
|
|
unsafe {
|
2013-07-30 22:58:55 -05:00
|
|
|
rust_get_test_int();
|
2013-05-24 21:35:29 -05:00
|
|
|
}
|
2012-09-04 18:40:11 -05:00
|
|
|
}
|