]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/hrtb-precedence-of-plus-error-message.rs
rollup merge of #19743: steveklabnik/gh16143
[rust.git] / src / test / compile-fail / hrtb-precedence-of-plus-error-message.rs
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 #![feature(unboxed_closures)]
12
13 // Test that we suggest the correct parentheses
14
15 trait Bar {
16     fn dummy(&self) { }
17 }
18
19 struct Foo<'a> {
20     a: &'a Bar+'a,
21         //~^ ERROR E0178
22         //~^^ NOTE perhaps you meant `&'a (Bar + 'a)`?
23
24     b: &'a mut Bar+'a,
25         //~^ ERROR E0178
26         //~^^ NOTE perhaps you meant `&'a mut (Bar + 'a)`?
27
28     c: Box<Bar+'a>, // OK, no paren needed in this context
29
30     d: fn() -> Bar+'a,
31         //~^ ERROR E0178
32         //~^^ NOTE perhaps you forgot parentheses
33         //~^^^ WARN deprecated syntax
34 }
35
36 fn main() { }