mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
14 lines
235 B
Rust
14 lines
235 B
Rust
![]() |
//@ check-pass
|
||
|
//@ edition:2021
|
||
|
|
||
|
// https://github.com/rust-lang/rust/issues/123573#issue-2229428739
|
||
|
|
||
|
pub trait Test {}
|
||
|
|
||
|
impl<'a, T: 'a> Test for &[T] where &'a T: Test {}
|
||
|
|
||
|
fn main() {
|
||
|
struct Local {}
|
||
|
impl Test for &Local {}
|
||
|
}
|