Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
102252.rs
blob: 200782f95c86169aa2208967589fc0f9d8023de9 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #102252
#![
feature
(
min_specialization
,
rustc_attrs
)]
#[
rustc_specialization_trait
]
pub
trait
Trait
{}
struct
Struct
where
Self
:
Iterator
<
Item
=
<
Self
as
Iterator
>::
Item
>,
{}
impl
Trait
for
Struct
{}
fn
main
()
{}