Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
issues
/
issue-16441.rs
blob: 58cfb3892975bdd760897fbc8038fc1077fe7468 [
file
] [
log
] [
blame
]
//@ 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
()
{
}