-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for the parsing of
+
and the error messages if people get…
… it wrong. Fixes #18772.
- Loading branch information
1 parent
1479a90
commit 21d5d13
Showing
3 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
src/test/compile-fail/hrtb-precedence-of-plus-error-message.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(unboxed_closures)] | ||
|
||
// Test that we suggest the correct parentheses | ||
|
||
trait Bar { | ||
fn dummy(&self) { } | ||
} | ||
|
||
struct Foo<'a> { | ||
a: &'a Bar+'a, | ||
//~^ ERROR E0171 | ||
//~^^ NOTE perhaps you meant `&'a (Bar + 'a)`? | ||
|
||
b: &'a mut Bar+'a, | ||
//~^ ERROR E0171 | ||
//~^^ NOTE perhaps you meant `&'a mut (Bar + 'a)`? | ||
|
||
c: Box<Bar+'a>, // OK, no paren needed in this context | ||
|
||
d: fn() -> Bar+'a, | ||
//~^ ERROR E0171 | ||
//~^^ NOTE perhaps you forgot parentheses | ||
} | ||
|
||
fn main() { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(unboxed_closures)] | ||
|
||
// Test that `F : Fn(int) -> int + Send` is interpreted as two | ||
// distinct bounds on `F`. | ||
|
||
fn foo<F>(f: F) | ||
where F : FnOnce(int) -> int + Send | ||
{ | ||
bar(f); | ||
baz(f); | ||
} | ||
|
||
fn bar<F:Send>(f: F) { } | ||
|
||
fn baz<F:FnOnce(int) -> int>(f: F) { } | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(unboxed_closures)] | ||
|
||
// Test that `Fn(int) -> int + 'static` parses as `(Fn(int) -> int) + | ||
// 'static` and not `Fn(int) -> (int + 'static)`. The latter would | ||
// cause a compilation error. Issue #18772. | ||
|
||
fn adder(y: int) -> Box<Fn(int) -> int + 'static> { | ||
box move |&: x| y + x | ||
} | ||
|
||
fn main() {} |
21d5d13
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r=brson