]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-1251.rs
Add 'src/tools/clippy/' from commit 'd2708873ef711ec8ab45df1e984ecf24a96cd369'
[rust.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() { }