]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/where-for-self.rs
New upstream version 1.24.1+dfsg1
[rustc.git] / src / test / compile-fail / where-for-self.rs
CommitLineData
85aaf69f
SL
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 we cannot nest
13// quantification in constraints (to be clear, there is no reason this should not
14// we're testing we don't crash or do something stupid).
15
16trait Bar<'a> {
17 fn bar(&self);
18}
19
20impl<'a, 'b> Bar<'b> for &'a u32 {
21 fn bar(&self) {}
22}
23
24fn foo<T>(x: &T)
25 where for<'a> &'a T: for<'b> Bar<'b>
26 //~^ error: nested quantification of lifetimes
27{}
28
29fn main() {}