]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/regions-assoc-type-in-supertrait-outlives-container.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / compile-fail / regions-assoc-type-in-supertrait-outlives-container.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 // Test that we are imposing the requirement that every associated
12 // type of a bound that appears in the where clause on a struct must
13 // outlive the location in which the type appears, even when the
14 // associted type is in a supertype. Issue #22246.
15
16 #![allow(dead_code)]
17
18 use std::marker::PhantomFn;
19
20 ///////////////////////////////////////////////////////////////////////////
21
22 pub trait TheTrait: PhantomFn<Self, Self> {
23     type TheAssocType;
24 }
25
26 pub trait TheSubTrait : TheTrait {
27 }
28
29 pub struct TheType<'b> {
30     m: [fn(&'b()); 0]
31 }
32
33 impl<'b> TheTrait for TheType<'b> {
34     type TheAssocType = &'b ();
35 }
36
37 impl<'b> TheSubTrait for TheType<'b> {
38 }
39
40 ///////////////////////////////////////////////////////////////////////////
41
42 pub struct WithAssoc<T:TheSubTrait> {
43     m: [T; 0]
44 }
45
46 fn with_assoc<'a,'b>() {
47     // For this type to be valid, the rules require that all
48     // associated types of traits that appear in `WithAssoc` must
49     // outlive 'a. In this case, that means TheType<'b>::TheAssocType,
50     // which is &'b (), must outlive 'a.
51
52     let _: &'a WithAssoc<TheType<'b>> = loop { }; //~ ERROR cannot infer
53 }
54
55 fn main() {
56 }