mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
338 B
Rust
18 lines
338 B
Rust
// Test related to #22779, but where the `'a:'b` relation
|
|
// appears in the trait too. No error here.
|
|
|
|
// check-pass
|
|
|
|
trait Tr<'a, T> {
|
|
fn renew<'b: 'a>(self) -> &'b mut [T] where 'a: 'b;
|
|
}
|
|
|
|
impl<'a, T> Tr<'a, T> for &'a mut [T] {
|
|
fn renew<'b: 'a>(self) -> &'b mut [T] where 'a: 'b {
|
|
&mut self[..]
|
|
}
|
|
}
|
|
|
|
|
|
fn main() { }
|