Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
crashes
/
131637.rs
blob: 7d328384a7455d3911dd8d67eadddc8a9b240bbf [
file
] [
log
] [
blame
]
//@ known-bug: #121637
#![
feature
(
non_lifetime_binders
)]
trait
Trait
<
Type
>
{
type
Type
;
fn
method
(&
self
)
->
impl
for
<
T
>
Trait
<
impl
Trait
<
T
>>;
}