diff options
| author | Oliver Schneider <git-spam-no-reply9815368754983@oli-obk.de> | 2017-03-29 09:12:44 +0200 |
|---|---|---|
| committer | Oliver Schneider <git-spam-no-reply9815368754983@oli-obk.de> | 2017-04-25 11:07:43 +0200 |
| commit | e0655a0319881191be5625d80e56012f55038053 (patch) | |
| tree | c8bb3e36467f4a4502a62ed2e3cc6e988e32f3c7 | |
| parent | f4b1e2af6836bcf30a8be05ff6a44df6f61b19f2 (diff) | |
| download | rust-e0655a0319881191be5625d80e56012f55038053.tar.gz rust-e0655a0319881191be5625d80e56012f55038053.zip | |
Fix a parse-fail test
| -rw-r--r-- | src/test/parse-fail/trait-object-polytrait-priority.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/parse-fail/trait-object-polytrait-priority.rs b/src/test/parse-fail/trait-object-polytrait-priority.rs index f0abc678c21..9df4be4595a 100644 --- a/src/test/parse-fail/trait-object-polytrait-priority.rs +++ b/src/test/parse-fail/trait-object-polytrait-priority.rs @@ -13,7 +13,6 @@ trait Trait<'a> {} fn main() { let _: &for<'a> Trait<'a> + 'static; //~^ ERROR expected a path on the left-hand side of `+`, not `& for<'a>Trait<'a>` - //~| NOTE expected a path //~| HELP try adding parentheses //~| SUGGESTION &( for<'a>Trait<'a> + 'static) } |
