rust/tests/ui/compare-method/proj-outlives-region.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
345 B
Rust
Raw Normal View History

2016-10-03 20:00:09 +00:00
// Test that we elaborate `Type: 'region` constraints and infer various important things.
trait Master<'a, T: ?Sized, U> {
fn foo() where T: 'a;
}
// `U::Item: 'a` does not imply that `U: 'a`
impl<'a, U: Iterator> Master<'a, U::Item, U> for () {
fn foo() where U: 'a { } //~ ERROR E0276
2016-10-03 20:00:09 +00:00
}
fn main() {
println!("Hello, world!");
}