Sign in
fuchsia
/
third_party
/
rust
/
23f762d3b15eb897b1fd3199e8c075393b067b68
/
.
/
tests
/
crashes
/
123887.rs
blob: 68e2fb0325c3d62dbfd02eb565d1989dcc449097 [
file
] [
log
] [
blame
]
//@ known-bug: rust-lang/rust#123887
//@ compile-flags: -Clink-dead-code
#![
feature
(
extern_types
)]
#![
feature
(
unsized_fn_params
)]
extern
"C"
{
pub
type
ExternType
;
}
impl
ExternType
{
pub
fn
f
(
self
)
{}
}
pub
fn
main
()
{}