diff options
Diffstat (limited to 'tests/ui/abi/c-stack-as-value.rs')
-rw-r--r-- | tests/ui/abi/c-stack-as-value.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/abi/c-stack-as-value.rs b/tests/ui/abi/c-stack-as-value.rs new file mode 100644 index 000000000..5bece0ba2 --- /dev/null +++ b/tests/ui/abi/c-stack-as-value.rs @@ -0,0 +1,18 @@ +// run-pass +// pretty-expanded FIXME #23616 +// ignore-wasm32-bare no libc to test ffi with + +#![feature(rustc_private)] + +mod rustrt { + extern crate libc; + + #[link(name = "rust_test_helpers", kind = "static")] + extern "C" { + pub fn rust_get_test_int() -> libc::intptr_t; + } +} + +pub fn main() { + let _foo = rustrt::rust_get_test_int; +} |