mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 15:18:03 +00:00
7 lines
88 B
Rust
7 lines
88 B
Rust
//@ known-bug: #137895
|
|
trait A {
|
|
fn b() -> impl ?Sized + 'a;
|
|
}
|
|
|
|
impl A for dyn A {}
|