Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
tests
/
ui
/
extern
/
empty-struct-extern-fn-16441.rs
blob: 82f2eee611d06c10600b9f9f01c1d47841e74a39 [
file
]
//! Regression test for https://github.com/rust-lang/rust/issues/16441
//@ run-pass
#![
allow
(
dead_code
)]
struct
Empty
;
// This used to cause an ICE
#[
allow
(
improper_ctypes_definitions
)]
extern
"C"
fn
ice
(
_a
:
Empty
)
{}
fn
main
()
{
}