]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-1251.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-1251.rs
1 // build-pass
2 #![allow(unused_attributes)]
3 #![allow(dead_code)]
4 // pretty-expanded FIXME #23616
5 // ignore-wasm32-bare no libc to test ffi with
6
7 #![feature(rustc_private)]
8
9 mod rustrt {
10 extern crate libc;
11
12 extern {
13 pub fn rust_get_test_int() -> libc::intptr_t;
14 }
15 }
16
17 pub fn main() { }