Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
dyn-compatibility
/
dyn-compatible-trait-implementation-20939.rs
blob: c7938b275e944f38f64c024b300a4eb74fba7231 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/20939
trait
Foo
{}
impl
<
'a> Foo for dyn Foo + '
a
{}
//~^ ERROR the object type `(dyn Foo + 'a)` automatically implements the trait `Foo`
fn
main
()
{}