]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-outlives.rs
Auto merge of #52553 - Pazzaz:vecdeque-append, r=SimonSapin
[rust.git] / src / test / ui / associated-types / associated-types-outlives.rs
1 // Copyright 2015 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 // Regression test for issue #24622. The older associated types code
12 // was erroneously assuming that all projections outlived the current
13 // fn body, causing this (invalid) code to be accepted.
14
15 pub trait Foo<'a> {
16     type Bar;
17 }
18
19 impl<'a, T:'a> Foo<'a> for T {
20     type Bar = &'a T;
21 }
22
23 fn denormalise<'a, T>(t: &'a T) -> <T as Foo<'a>>::Bar {
24     t
25 }
26
27 pub fn free_and_use<T: for<'a> Foo<'a>,
28                     F: for<'a> FnOnce(<T as Foo<'a>>::Bar)>(x: T, f: F) {
29     let y;
30     'body: loop { // lifetime annotations added for clarity
31         's: loop { y = denormalise(&x); break }
32         drop(x); //~ ERROR cannot move out of `x` because it is borrowed
33         return f(y);
34     }
35 }
36
37 pub fn main() {
38 }