rust/tests/crashes/131637.rs
2024-10-20 10:05:39 +02:00

8 lines
153 B
Rust

//@ known-bug: #121637
#![feature(non_lifetime_binders)]
trait Trait<Type> {
type Type;
fn method(&self) -> impl for<T> Trait<impl Trait<T>>;
}