PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/src/test/compile-fail/hrtb-precedence-of-plus-error-message.rs

http://github.com/eholk/rust
Rust | 36 lines | 11 code | 8 blank | 17 comment | 0 complexity | 2dfb6c59863052dcd7a6bc8ebf5321fd MD5 | raw file
Possible License(s): AGPL-1.0, BSD-2-Clause, 0BSD, Apache-2.0, MIT, LGPL-2.0
  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. #![feature(unboxed_closures)]
  11. // Test that we suggest the correct parentheses
  12. trait Bar {
  13. fn dummy(&self) { }
  14. }
  15. struct Foo<'a> {
  16. a: &'a Bar+'a,
  17. //~^ ERROR E0178
  18. //~^^ HELP perhaps you meant `&'a (Bar + 'a)`?
  19. b: &'a mut Bar+'a,
  20. //~^ ERROR E0178
  21. //~^^ HELP perhaps you meant `&'a mut (Bar + 'a)`?
  22. c: Box<Bar+'a>, // OK, no paren needed in this context
  23. d: fn() -> Bar+'a,
  24. //~^ ERROR E0178
  25. //~^^ HELP perhaps you forgot parentheses
  26. //~^^^ WARN deprecated syntax
  27. }
  28. fn main() { }