mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 19:23:50 +00:00
11 lines
170 B
Rust
11 lines
170 B
Rust
// compile-flags: -Ztrait-solver=next
|
|
// check-pass
|
|
|
|
trait Foo<'a> {}
|
|
trait Bar<'a> {}
|
|
|
|
impl<'a, T: Bar<'a>> Foo<'a> for T {}
|
|
impl<T> Bar<'static> for T {}
|
|
|
|
fn main() {}
|