Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
extern
/
empty-struct-extern-fn-16441.rs
blob: 82f2eee611d06c10600b9f9f01c1d47841e74a39 [
file
] [
log
] [
blame
]
//! 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
()
{
}