]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/associated-types-project-from-hrtb-in-fn-body.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / test / compile-fail / associated-types-project-from-hrtb-in-fn-body.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// Check projection of an associated type out of a higher-ranked
12// trait-bound in the context of a function body.
13
14pub trait Foo<T> {
15 type A;
16
17 fn get(&self, t: T) -> Self::A;
18}
19
20fn foo<'a, I : for<'x> Foo<&'x isize>>(
21 x: <I as Foo<&'a isize>>::A)
22{
23 let y: I::A = x;
24}
25
26fn bar<'a, 'b, I : for<'x> Foo<&'x isize>>(
27 x: <I as Foo<&'a isize>>::A,
28 y: <I as Foo<&'b isize>>::A,
29 cond: bool)
30{
31 // x and y here have two distinct lifetimes:
32 let z: I::A = if cond { x } else { y };
abe05a73 33 //~^ ERROR lifetime mismatch
1a4d82fc
JJ
34}
35
36pub fn main() {}