Currently the default is "inherited" from context, so e.g. `&impl Foo<Item = dyn Bar>` would default to `&'x impl Foo<Item = dyn Bar + 'x>`, but this triggers an ICE and is not very consistent. This patch doesn't implement what I expect would be the correct semantics, because those are likely too complex. Instead, it handles what I'd expect to be the common case -- where the trait has no lifetime parameters.
28 lines
564 B
Rust
28 lines
564 B
Rust
// Test that we don't get an error with `dyn Bar` in an impl Trait
|
|
// when there are multiple inputs. The `dyn Bar` should default to `+
|
|
// 'static`. This used to erroneously generate an error (cc #62517).
|
|
//
|
|
// check-pass
|
|
|
|
trait Foo {
|
|
type Item: ?Sized;
|
|
|
|
fn item(&self) -> Box<Self::Item> { panic!() }
|
|
}
|
|
|
|
trait Bar { }
|
|
|
|
impl<T> Foo for T {
|
|
type Item = dyn Bar;
|
|
}
|
|
|
|
fn is_static<T>(_: T) where T: 'static { }
|
|
|
|
fn bar(x: &str) -> &impl Foo<Item = dyn Bar> { &() }
|
|
|
|
fn main() {
|
|
let s = format!("foo");
|
|
let r = bar(&s);
|
|
is_static(r.item());
|
|
}
|