Skip to content

Commit 7e68299

Browse files
authored
Rollup merge of #48481 - Manishearth:dyn-paren, r=petrochenkov
Allow parentheses in `dyn (Trait)` r? @eddyb @nikomatsakis
2 parents 2dba874 + 4c73f82 commit 7e68299

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

src/libsyntax/parse/parser.rs

+9-5
Original file line numberDiff line numberDiff line change
@@ -405,11 +405,14 @@ impl TokenType {
405405
}
406406
}
407407

408-
// Returns true if `IDENT t` can start a type - `IDENT::a::b`, `IDENT<u8, u8>`,
409-
// `IDENT<<u8 as Trait>::AssocTy>`, `IDENT(u8, u8) -> u8`.
410-
fn can_continue_type_after_ident(t: &token::Token) -> bool {
408+
/// Returns true if `IDENT t` can start a type - `IDENT::a::b`, `IDENT<u8, u8>`,
409+
/// `IDENT<<u8 as Trait>::AssocTy>`.
410+
///
411+
/// Types can also be of the form `IDENT(u8, u8) -> u8`, however this assumes
412+
/// that IDENT is not the ident of a fn trait
413+
fn can_continue_type_after_non_fn_ident(t: &token::Token) -> bool {
411414
t == &token::ModSep || t == &token::Lt ||
412-
t == &token::BinOp(token::Shl) || t == &token::OpenDelim(token::Paren)
415+
t == &token::BinOp(token::Shl)
413416
}
414417

415418
/// Information about the path to a module.
@@ -1619,7 +1622,8 @@ impl<'a> Parser<'a> {
16191622
impl_dyn_multi = bounds.len() > 1 || self.prev_token_kind == PrevTokenKind::Plus;
16201623
TyKind::ImplTrait(bounds)
16211624
} else if self.check_keyword(keywords::Dyn) &&
1622-
self.look_ahead(1, |t| t.can_begin_bound() && !can_continue_type_after_ident(t)) {
1625+
self.look_ahead(1, |t| t.can_begin_bound() &&
1626+
!can_continue_type_after_non_fn_ident(t)) {
16231627
self.bump(); // `dyn`
16241628
// Always parse bounds greedily for better error recovery.
16251629
let bounds = self.parse_ty_param_bounds()?;

src/test/compile-fail/dyn-trait-compatibility.rs

-5
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,5 @@ type A3 = dyn<<dyn as dyn>::dyn>;
2020
//~^ ERROR cannot find type `dyn` in this scope
2121
//~| ERROR cannot find type `dyn` in this scope
2222
//~| ERROR Use of undeclared type or module `dyn`
23-
type A4 = dyn(dyn, dyn) -> dyn;
24-
//~^ ERROR cannot find type `dyn` in this scope
25-
//~| ERROR cannot find type `dyn` in this scope
26-
//~| ERROR cannot find type `dyn` in this scope
27-
//~| ERROR cannot find type `dyn` in this scope
2823

2924
fn main() {}

src/test/run-pass/dyn-trait.rs

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ static BYTE: u8 = 33;
1717
fn main() {
1818
let x: &(dyn 'static + Display) = &BYTE;
1919
let y: Box<dyn Display + 'static> = Box::new(BYTE);
20+
let _: &dyn (Display) = &BYTE;
21+
let _: &dyn (::std::fmt::Display) = &BYTE;
2022
let xstr = format!("{}", x);
2123
let ystr = format!("{}", y);
2224
assert_eq!(xstr, "33");

0 commit comments

Comments
 (0)