]> git.lizzy.rs Git - rust.git/blob - src/test/ui/where-clauses/where-for-self-2.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / where-clauses / where-for-self-2.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 can quantify lifetimes outside a constraint (i.e., including
12 // the self type) in a where clause. Specifically, test that implementing for a
13 // specific lifetime is not enough to satisfy the `for<'a> ...` constraint, which
14 // should require *all* lifetimes.
15
16 static X: &'static u32 = &42;
17
18 trait Bar {
19     fn bar(&self);
20 }
21
22 impl Bar for &'static u32 {
23     fn bar(&self) {}
24 }
25
26 fn foo<T>(x: &T)
27     where for<'a> &'a T: Bar
28 {}
29
30 fn main() {
31     foo(&X);
32     //~^ error: `for<'a> &'a _: Bar` is not satisfied
33 }