Skip to content

Commit 8d65c8d

Browse files
committed
Auto merge of #38268 - withoutboats:parse_where_higher_rank_hack, r=eddyb
Prevent where < ident > from parsing. In order to be forward compatible with `where<'a>` syntax for higher rank parameters, prevent potential conflicts with UFCS from parsing correctly for the near term.
2 parents 4d07320 + 14e4b00 commit 8d65c8d

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

src/libsyntax/parse/parser.rs

+17
Original file line numberDiff line numberDiff line change
@@ -4368,6 +4368,23 @@ impl<'a> Parser<'a> {
43684368
return Ok(where_clause);
43694369
}
43704370

4371+
// This is a temporary hack.
4372+
//
4373+
// We are considering adding generics to the `where` keyword as an alternative higher-rank
4374+
// parameter syntax (as in `where<'a>` or `where<T>`. To avoid that being a breaking
4375+
// change, for now we refuse to parse `where < (ident | lifetime) (> | , | :)`.
4376+
if token::Lt == self.token {
4377+
let ident_or_lifetime = self.look_ahead(1, |t| t.is_ident() || t.is_lifetime());
4378+
if ident_or_lifetime {
4379+
let gt_comma_or_colon = self.look_ahead(2, |t| {
4380+
*t == token::Gt || *t == token::Comma || *t == token::Colon
4381+
});
4382+
if gt_comma_or_colon {
4383+
self.span_err(self.span, "syntax `where<T>` is reserved for future use");
4384+
}
4385+
}
4386+
}
4387+
43714388
let mut parsed_something = false;
43724389
loop {
43734390
let lo = self.span.lo;
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2016 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+
// compile-flags: -Z parse-only
12+
13+
fn foo<T>() where <T>::Item: ToString, T: Iterator { }
14+
//~^ syntax `where<T>` is reserved for future use
15+
16+
fn main() {}

0 commit comments

Comments
 (0)