blob: 305f46c6d4ee9ccc41ae88f77a5465346ef83bda [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
#![allow(improper_ctypes)]
// pretty-expanded FIXME #23616
#![allow(non_snake_case)]
pub mod Bar {
pub struct Foo {
v: isize,
}
extern {
pub fn foo(v: *const Foo) -> Foo;
}
}
pub fn main() { }