mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
252 B
Rust
13 lines
252 B
Rust
trait Foo<'foo>: 'foo {}
|
|
trait Bar<'bar>: 'bar {}
|
|
|
|
trait FooBar<'foo, 'bar>: Foo<'foo> + Bar<'bar> {}
|
|
|
|
struct Baz<'foo, 'bar> {
|
|
baz: dyn FooBar<'foo, 'bar>,
|
|
//~^ ERROR ambiguous lifetime bound, explicit lifetime bound required
|
|
}
|
|
|
|
fn main() {
|
|
}
|