]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_parse/src/parser/ty.rs
Rollup merge of #85781 - badboy:document-aarch-ios-sim-support, r=Amanieu
[rust.git] / compiler / rustc_parse / src / parser / ty.rs
1 use super::{Parser, PathStyle, TokenType};
2
3 use crate::{maybe_recover_from_interpolated_ty_qpath, maybe_whole};
4
5 use rustc_ast::ptr::P;
6 use rustc_ast::token::{self, Token, TokenKind};
7 use rustc_ast::{self as ast, BareFnTy, FnRetTy, GenericParam, Lifetime, MutTy, Ty, TyKind};
8 use rustc_ast::{GenericBound, GenericBounds, MacCall, Mutability};
9 use rustc_ast::{PolyTraitRef, TraitBoundModifier, TraitObjectSyntax};
10 use rustc_errors::{pluralize, struct_span_err, Applicability, PResult};
11 use rustc_span::source_map::Span;
12 use rustc_span::symbol::{kw, sym};
13
14 /// Any `?` or `?const` modifiers that appear at the start of a bound.
15 struct BoundModifiers {
16     /// `?Trait`.
17     maybe: Option<Span>,
18
19     /// `?const Trait`.
20     maybe_const: Option<Span>,
21 }
22
23 impl BoundModifiers {
24     fn to_trait_bound_modifier(&self) -> TraitBoundModifier {
25         match (self.maybe, self.maybe_const) {
26             (None, None) => TraitBoundModifier::None,
27             (Some(_), None) => TraitBoundModifier::Maybe,
28             (None, Some(_)) => TraitBoundModifier::MaybeConst,
29             (Some(_), Some(_)) => TraitBoundModifier::MaybeConstMaybe,
30         }
31     }
32 }
33
34 #[derive(Copy, Clone, PartialEq)]
35 pub(super) enum AllowPlus {
36     Yes,
37     No,
38 }
39
40 #[derive(PartialEq)]
41 pub(super) enum RecoverQPath {
42     Yes,
43     No,
44 }
45
46 /// Signals whether parsing a type should recover `->`.
47 ///
48 /// More specifically, when parsing a function like:
49 /// ```rust
50 /// fn foo() => u8 { 0 }
51 /// fn bar(): u8 { 0 }
52 /// ```
53 /// The compiler will try to recover interpreting `foo() => u8` as `foo() -> u8` when calling
54 /// `parse_ty` with anything except `RecoverReturnSign::No`, and it will try to recover `bar(): u8`
55 /// as `bar() -> u8` when passing `RecoverReturnSign::Yes` to `parse_ty`
56 #[derive(Copy, Clone, PartialEq)]
57 pub(super) enum RecoverReturnSign {
58     Yes,
59     OnlyFatArrow,
60     No,
61 }
62
63 impl RecoverReturnSign {
64     /// [RecoverReturnSign::Yes] allows for recovering `fn foo() => u8` and `fn foo(): u8`,
65     /// [RecoverReturnSign::OnlyFatArrow] allows for recovering only `fn foo() => u8` (recovering
66     /// colons can cause problems when parsing where clauses), and
67     /// [RecoverReturnSign::No] doesn't allow for any recovery of the return type arrow
68     fn can_recover(self, token: &TokenKind) -> bool {
69         match self {
70             Self::Yes => matches!(token, token::FatArrow | token::Colon),
71             Self::OnlyFatArrow => matches!(token, token::FatArrow),
72             Self::No => false,
73         }
74     }
75 }
76
77 // Is `...` (`CVarArgs`) legal at this level of type parsing?
78 #[derive(PartialEq)]
79 enum AllowCVariadic {
80     Yes,
81     No,
82 }
83
84 /// Returns `true` if `IDENT t` can start a type -- `IDENT::a::b`, `IDENT<u8, u8>`,
85 /// `IDENT<<u8 as Trait>::AssocTy>`.
86 ///
87 /// Types can also be of the form `IDENT(u8, u8) -> u8`, however this assumes
88 /// that `IDENT` is not the ident of a fn trait.
89 fn can_continue_type_after_non_fn_ident(t: &Token) -> bool {
90     t == &token::ModSep || t == &token::Lt || t == &token::BinOp(token::Shl)
91 }
92
93 impl<'a> Parser<'a> {
94     /// Parses a type.
95     pub fn parse_ty(&mut self) -> PResult<'a, P<Ty>> {
96         self.parse_ty_common(
97             AllowPlus::Yes,
98             AllowCVariadic::No,
99             RecoverQPath::Yes,
100             RecoverReturnSign::Yes,
101         )
102     }
103
104     /// Parse a type suitable for a function or function pointer parameter.
105     /// The difference from `parse_ty` is that this version allows `...`
106     /// (`CVarArgs`) at the top level of the type.
107     pub(super) fn parse_ty_for_param(&mut self) -> PResult<'a, P<Ty>> {
108         self.parse_ty_common(
109             AllowPlus::Yes,
110             AllowCVariadic::Yes,
111             RecoverQPath::Yes,
112             RecoverReturnSign::Yes,
113         )
114     }
115
116     /// Parses a type in restricted contexts where `+` is not permitted.
117     ///
118     /// Example 1: `&'a TYPE`
119     ///     `+` is prohibited to maintain operator priority (P(+) < P(&)).
120     /// Example 2: `value1 as TYPE + value2`
121     ///     `+` is prohibited to avoid interactions with expression grammar.
122     pub(super) fn parse_ty_no_plus(&mut self) -> PResult<'a, P<Ty>> {
123         self.parse_ty_common(
124             AllowPlus::No,
125             AllowCVariadic::No,
126             RecoverQPath::Yes,
127             RecoverReturnSign::Yes,
128         )
129     }
130
131     /// Parse a type without recovering `:` as `->` to avoid breaking code such as `where fn() : for<'a>`
132     pub(super) fn parse_ty_for_where_clause(&mut self) -> PResult<'a, P<Ty>> {
133         self.parse_ty_common(
134             AllowPlus::Yes,
135             AllowCVariadic::Yes,
136             RecoverQPath::Yes,
137             RecoverReturnSign::OnlyFatArrow,
138         )
139     }
140
141     /// Parses an optional return type `[ -> TY ]` in a function declaration.
142     pub(super) fn parse_ret_ty(
143         &mut self,
144         allow_plus: AllowPlus,
145         recover_qpath: RecoverQPath,
146         recover_return_sign: RecoverReturnSign,
147     ) -> PResult<'a, FnRetTy> {
148         Ok(if self.eat(&token::RArrow) {
149             // FIXME(Centril): Can we unconditionally `allow_plus`?
150             let ty = self.parse_ty_common(
151                 allow_plus,
152                 AllowCVariadic::No,
153                 recover_qpath,
154                 recover_return_sign,
155             )?;
156             FnRetTy::Ty(ty)
157         } else if recover_return_sign.can_recover(&self.token.kind) {
158             // Don't `eat` to prevent `=>` from being added as an expected token which isn't
159             // actually expected and could only confuse users
160             self.bump();
161             self.struct_span_err(self.prev_token.span, "return types are denoted using `->`")
162                 .span_suggestion_short(
163                     self.prev_token.span,
164                     "use `->` instead",
165                     "->".to_string(),
166                     Applicability::MachineApplicable,
167                 )
168                 .emit();
169             let ty = self.parse_ty_common(
170                 allow_plus,
171                 AllowCVariadic::No,
172                 recover_qpath,
173                 recover_return_sign,
174             )?;
175             FnRetTy::Ty(ty)
176         } else {
177             FnRetTy::Default(self.token.span.shrink_to_lo())
178         })
179     }
180
181     fn parse_ty_common(
182         &mut self,
183         allow_plus: AllowPlus,
184         allow_c_variadic: AllowCVariadic,
185         recover_qpath: RecoverQPath,
186         recover_return_sign: RecoverReturnSign,
187     ) -> PResult<'a, P<Ty>> {
188         let allow_qpath_recovery = recover_qpath == RecoverQPath::Yes;
189         maybe_recover_from_interpolated_ty_qpath!(self, allow_qpath_recovery);
190         maybe_whole!(self, NtTy, |x| x);
191
192         let lo = self.token.span;
193         let mut impl_dyn_multi = false;
194         let kind = if self.check(&token::OpenDelim(token::Paren)) {
195             self.parse_ty_tuple_or_parens(lo, allow_plus)?
196         } else if self.eat(&token::Not) {
197             // Never type `!`
198             TyKind::Never
199         } else if self.eat(&token::BinOp(token::Star)) {
200             self.parse_ty_ptr()?
201         } else if self.eat(&token::OpenDelim(token::Bracket)) {
202             self.parse_array_or_slice_ty()?
203         } else if self.check(&token::BinOp(token::And)) || self.check(&token::AndAnd) {
204             // Reference
205             self.expect_and()?;
206             self.parse_borrowed_pointee()?
207         } else if self.eat_keyword_noexpect(kw::Typeof) {
208             self.parse_typeof_ty()?
209         } else if self.eat_keyword(kw::Underscore) {
210             // A type to be inferred `_`
211             TyKind::Infer
212         } else if self.check_fn_front_matter(false) {
213             // Function pointer type
214             self.parse_ty_bare_fn(lo, Vec::new(), recover_return_sign)?
215         } else if self.check_keyword(kw::For) {
216             // Function pointer type or bound list (trait object type) starting with a poly-trait.
217             //   `for<'lt> [unsafe] [extern "ABI"] fn (&'lt S) -> T`
218             //   `for<'lt> Trait1<'lt> + Trait2 + 'a`
219             let lifetime_defs = self.parse_late_bound_lifetime_defs()?;
220             if self.check_fn_front_matter(false) {
221                 self.parse_ty_bare_fn(lo, lifetime_defs, recover_return_sign)?
222             } else {
223                 let path = self.parse_path(PathStyle::Type)?;
224                 let parse_plus = allow_plus == AllowPlus::Yes && self.check_plus();
225                 self.parse_remaining_bounds_path(lifetime_defs, path, lo, parse_plus)?
226             }
227         } else if self.eat_keyword(kw::Impl) {
228             self.parse_impl_ty(&mut impl_dyn_multi)?
229         } else if self.token.is_keyword(kw::Union)
230             && self.look_ahead(1, |t| t == &token::OpenDelim(token::Brace))
231         {
232             self.bump();
233             let (fields, recovered) = self.parse_record_struct_body("union")?;
234             let span = lo.to(self.prev_token.span);
235             self.sess.gated_spans.gate(sym::unnamed_fields, span);
236             TyKind::AnonymousUnion(fields, recovered)
237         } else if self.eat_keyword(kw::Struct) {
238             let (fields, recovered) = self.parse_record_struct_body("struct")?;
239             let span = lo.to(self.prev_token.span);
240             self.sess.gated_spans.gate(sym::unnamed_fields, span);
241             TyKind::AnonymousStruct(fields, recovered)
242         } else if self.is_explicit_dyn_type() {
243             self.parse_dyn_ty(&mut impl_dyn_multi)?
244         } else if self.eat_lt() {
245             // Qualified path
246             let (qself, path) = self.parse_qpath(PathStyle::Type)?;
247             TyKind::Path(Some(qself), path)
248         } else if self.check_path() {
249             self.parse_path_start_ty(lo, allow_plus)?
250         } else if self.can_begin_bound() {
251             self.parse_bare_trait_object(lo, allow_plus)?
252         } else if self.eat(&token::DotDotDot) {
253             if allow_c_variadic == AllowCVariadic::Yes {
254                 TyKind::CVarArgs
255             } else {
256                 // FIXME(Centril): Should we just allow `...` syntactically
257                 // anywhere in a type and use semantic restrictions instead?
258                 self.error_illegal_c_varadic_ty(lo);
259                 TyKind::Err
260             }
261         } else {
262             let msg = format!("expected type, found {}", super::token_descr(&self.token));
263             let mut err = self.struct_span_err(self.token.span, &msg);
264             err.span_label(self.token.span, "expected type");
265             self.maybe_annotate_with_ascription(&mut err, true);
266             return Err(err);
267         };
268
269         let span = lo.to(self.prev_token.span);
270         let ty = self.mk_ty(span, kind);
271
272         // Try to recover from use of `+` with incorrect priority.
273         self.maybe_report_ambiguous_plus(allow_plus, impl_dyn_multi, &ty);
274         self.maybe_recover_from_bad_type_plus(allow_plus, &ty)?;
275         self.maybe_recover_from_bad_qpath(ty, allow_qpath_recovery)
276     }
277
278     /// Parses either:
279     /// - `(TYPE)`, a parenthesized type.
280     /// - `(TYPE,)`, a tuple with a single field of type TYPE.
281     fn parse_ty_tuple_or_parens(&mut self, lo: Span, allow_plus: AllowPlus) -> PResult<'a, TyKind> {
282         let mut trailing_plus = false;
283         let (ts, trailing) = self.parse_paren_comma_seq(|p| {
284             let ty = p.parse_ty()?;
285             trailing_plus = p.prev_token.kind == TokenKind::BinOp(token::Plus);
286             Ok(ty)
287         })?;
288
289         if ts.len() == 1 && !trailing {
290             let ty = ts.into_iter().next().unwrap().into_inner();
291             let maybe_bounds = allow_plus == AllowPlus::Yes && self.token.is_like_plus();
292             match ty.kind {
293                 // `(TY_BOUND_NOPAREN) + BOUND + ...`.
294                 TyKind::Path(None, path) if maybe_bounds => {
295                     self.parse_remaining_bounds_path(Vec::new(), path, lo, true)
296                 }
297                 TyKind::TraitObject(bounds, TraitObjectSyntax::None)
298                     if maybe_bounds && bounds.len() == 1 && !trailing_plus =>
299                 {
300                     self.parse_remaining_bounds(bounds, true)
301                 }
302                 // `(TYPE)`
303                 _ => Ok(TyKind::Paren(P(ty))),
304             }
305         } else {
306             Ok(TyKind::Tup(ts))
307         }
308     }
309
310     fn parse_bare_trait_object(&mut self, lo: Span, allow_plus: AllowPlus) -> PResult<'a, TyKind> {
311         let lt_no_plus = self.check_lifetime() && !self.look_ahead(1, |t| t.is_like_plus());
312         let bounds = self.parse_generic_bounds_common(allow_plus, None)?;
313         if lt_no_plus {
314             self.struct_span_err(lo, "lifetime in trait object type must be followed by `+`").emit()
315         }
316         Ok(TyKind::TraitObject(bounds, TraitObjectSyntax::None))
317     }
318
319     fn parse_remaining_bounds_path(
320         &mut self,
321         generic_params: Vec<GenericParam>,
322         path: ast::Path,
323         lo: Span,
324         parse_plus: bool,
325     ) -> PResult<'a, TyKind> {
326         let poly_trait_ref = PolyTraitRef::new(generic_params, path, lo.to(self.prev_token.span));
327         let bounds = vec![GenericBound::Trait(poly_trait_ref, TraitBoundModifier::None)];
328         self.parse_remaining_bounds(bounds, parse_plus)
329     }
330
331     /// Parse the remainder of a bare trait object type given an already parsed list.
332     fn parse_remaining_bounds(
333         &mut self,
334         mut bounds: GenericBounds,
335         plus: bool,
336     ) -> PResult<'a, TyKind> {
337         assert_ne!(self.token, token::Question);
338         if plus {
339             self.eat_plus(); // `+`, or `+=` gets split and `+` is discarded
340             bounds.append(&mut self.parse_generic_bounds(Some(self.prev_token.span))?);
341         }
342         Ok(TyKind::TraitObject(bounds, TraitObjectSyntax::None))
343     }
344
345     /// Parses a raw pointer type: `*[const | mut] $type`.
346     fn parse_ty_ptr(&mut self) -> PResult<'a, TyKind> {
347         let mutbl = self.parse_const_or_mut().unwrap_or_else(|| {
348             let span = self.prev_token.span;
349             let msg = "expected mut or const in raw pointer type";
350             self.struct_span_err(span, msg)
351                 .span_label(span, msg)
352                 .help("use `*mut T` or `*const T` as appropriate")
353                 .emit();
354             Mutability::Not
355         });
356         let ty = self.parse_ty_no_plus()?;
357         Ok(TyKind::Ptr(MutTy { ty, mutbl }))
358     }
359
360     /// Parses an array (`[TYPE; EXPR]`) or slice (`[TYPE]`) type.
361     /// The opening `[` bracket is already eaten.
362     fn parse_array_or_slice_ty(&mut self) -> PResult<'a, TyKind> {
363         let elt_ty = match self.parse_ty() {
364             Ok(ty) => ty,
365             Err(mut err)
366                 if self.look_ahead(1, |t| t.kind == token::CloseDelim(token::Bracket))
367                     | self.look_ahead(1, |t| t.kind == token::Semi) =>
368             {
369                 // Recover from `[LIT; EXPR]` and `[LIT]`
370                 self.bump();
371                 err.emit();
372                 self.mk_ty(self.prev_token.span, TyKind::Err)
373             }
374             Err(err) => return Err(err),
375         };
376
377         let ty = if self.eat(&token::Semi) {
378             let mut length = self.parse_anon_const_expr()?;
379             if let Err(e) = self.expect(&token::CloseDelim(token::Bracket)) {
380                 // Try to recover from `X<Y, ...>` when `X::<Y, ...>` works
381                 self.check_mistyped_turbofish_with_multiple_type_params(e, &mut length.value)?;
382                 self.expect(&token::CloseDelim(token::Bracket))?;
383             }
384             TyKind::Array(elt_ty, length)
385         } else {
386             self.expect(&token::CloseDelim(token::Bracket))?;
387             TyKind::Slice(elt_ty)
388         };
389
390         Ok(ty)
391     }
392
393     fn parse_borrowed_pointee(&mut self) -> PResult<'a, TyKind> {
394         let and_span = self.prev_token.span;
395         let mut opt_lifetime =
396             if self.check_lifetime() { Some(self.expect_lifetime()) } else { None };
397         let mutbl = self.parse_mutability();
398         if self.token.is_lifetime() && mutbl == Mutability::Mut && opt_lifetime.is_none() {
399             // A lifetime is invalid here: it would be part of a bare trait bound, which requires
400             // it to be followed by a plus, but we disallow plus in the pointee type.
401             // So we can handle this case as an error here, and suggest `'a mut`.
402             // If there *is* a plus next though, handling the error later provides better suggestions
403             // (like adding parentheses)
404             if !self.look_ahead(1, |t| t.is_like_plus()) {
405                 let lifetime_span = self.token.span;
406                 let span = and_span.to(lifetime_span);
407
408                 let mut err = self.struct_span_err(span, "lifetime must precede `mut`");
409                 if let Ok(lifetime_src) = self.span_to_snippet(lifetime_span) {
410                     err.span_suggestion(
411                         span,
412                         "place the lifetime before `mut`",
413                         format!("&{} mut", lifetime_src),
414                         Applicability::MaybeIncorrect,
415                     );
416                 }
417                 err.emit();
418
419                 opt_lifetime = Some(self.expect_lifetime());
420             }
421         }
422         let ty = self.parse_ty_no_plus()?;
423         Ok(TyKind::Rptr(opt_lifetime, MutTy { ty, mutbl }))
424     }
425
426     // Parses the `typeof(EXPR)`.
427     // To avoid ambiguity, the type is surrounded by parenthesis.
428     fn parse_typeof_ty(&mut self) -> PResult<'a, TyKind> {
429         self.expect(&token::OpenDelim(token::Paren))?;
430         let expr = self.parse_anon_const_expr()?;
431         self.expect(&token::CloseDelim(token::Paren))?;
432         Ok(TyKind::Typeof(expr))
433     }
434
435     /// Parses a function pointer type (`TyKind::BareFn`).
436     /// ```
437     /// [unsafe] [extern "ABI"] fn (S) -> T
438     ///  ^~~~~^          ^~~~^     ^~^    ^
439     ///    |               |        |     |
440     ///    |               |        |   Return type
441     /// Function Style    ABI  Parameter types
442     /// ```
443     /// We actually parse `FnHeader FnDecl`, but we error on `const` and `async` qualifiers.
444     fn parse_ty_bare_fn(
445         &mut self,
446         lo: Span,
447         params: Vec<GenericParam>,
448         recover_return_sign: RecoverReturnSign,
449     ) -> PResult<'a, TyKind> {
450         let ast::FnHeader { ext, unsafety, constness, asyncness } = self.parse_fn_front_matter()?;
451         let decl = self.parse_fn_decl(|_| false, AllowPlus::No, recover_return_sign)?;
452         let whole_span = lo.to(self.prev_token.span);
453         if let ast::Const::Yes(span) = constness {
454             self.error_fn_ptr_bad_qualifier(whole_span, span, "const");
455         }
456         if let ast::Async::Yes { span, .. } = asyncness {
457             self.error_fn_ptr_bad_qualifier(whole_span, span, "async");
458         }
459         Ok(TyKind::BareFn(P(BareFnTy { ext, unsafety, generic_params: params, decl })))
460     }
461
462     /// Emit an error for the given bad function pointer qualifier.
463     fn error_fn_ptr_bad_qualifier(&self, span: Span, qual_span: Span, qual: &str) {
464         self.struct_span_err(span, &format!("an `fn` pointer type cannot be `{}`", qual))
465             .span_label(qual_span, format!("`{}` because of this", qual))
466             .span_suggestion_short(
467                 qual_span,
468                 &format!("remove the `{}` qualifier", qual),
469                 String::new(),
470                 Applicability::MaybeIncorrect,
471             )
472             .emit();
473     }
474
475     /// Parses an `impl B0 + ... + Bn` type.
476     fn parse_impl_ty(&mut self, impl_dyn_multi: &mut bool) -> PResult<'a, TyKind> {
477         // Always parse bounds greedily for better error recovery.
478         let bounds = self.parse_generic_bounds(None)?;
479         *impl_dyn_multi = bounds.len() > 1 || self.prev_token.kind == TokenKind::BinOp(token::Plus);
480         Ok(TyKind::ImplTrait(ast::DUMMY_NODE_ID, bounds))
481     }
482
483     /// Is a `dyn B0 + ... + Bn` type allowed here?
484     fn is_explicit_dyn_type(&mut self) -> bool {
485         self.check_keyword(kw::Dyn)
486             && (!self.token.uninterpolated_span().rust_2015()
487                 || self.look_ahead(1, |t| {
488                     t.can_begin_bound() && !can_continue_type_after_non_fn_ident(t)
489                 }))
490     }
491
492     /// Parses a `dyn B0 + ... + Bn` type.
493     ///
494     /// Note that this does *not* parse bare trait objects.
495     fn parse_dyn_ty(&mut self, impl_dyn_multi: &mut bool) -> PResult<'a, TyKind> {
496         self.bump(); // `dyn`
497         // Always parse bounds greedily for better error recovery.
498         let bounds = self.parse_generic_bounds(None)?;
499         *impl_dyn_multi = bounds.len() > 1 || self.prev_token.kind == TokenKind::BinOp(token::Plus);
500         Ok(TyKind::TraitObject(bounds, TraitObjectSyntax::Dyn))
501     }
502
503     /// Parses a type starting with a path.
504     ///
505     /// This can be:
506     /// 1. a type macro, `mac!(...)`,
507     /// 2. a bare trait object, `B0 + ... + Bn`,
508     /// 3. or a path, `path::to::MyType`.
509     fn parse_path_start_ty(&mut self, lo: Span, allow_plus: AllowPlus) -> PResult<'a, TyKind> {
510         // Simple path
511         let path = self.parse_path(PathStyle::Type)?;
512         if self.eat(&token::Not) {
513             // Macro invocation in type position
514             Ok(TyKind::MacCall(MacCall {
515                 path,
516                 args: self.parse_mac_args()?,
517                 prior_type_ascription: self.last_type_ascription,
518             }))
519         } else if allow_plus == AllowPlus::Yes && self.check_plus() {
520             // `Trait1 + Trait2 + 'a`
521             self.parse_remaining_bounds_path(Vec::new(), path, lo, true)
522         } else {
523             // Just a type path.
524             Ok(TyKind::Path(None, path))
525         }
526     }
527
528     fn error_illegal_c_varadic_ty(&self, lo: Span) {
529         struct_span_err!(
530             self.sess.span_diagnostic,
531             lo.to(self.prev_token.span),
532             E0743,
533             "C-variadic type `...` may not be nested inside another type",
534         )
535         .emit();
536     }
537
538     pub(super) fn parse_generic_bounds(
539         &mut self,
540         colon_span: Option<Span>,
541     ) -> PResult<'a, GenericBounds> {
542         self.parse_generic_bounds_common(AllowPlus::Yes, colon_span)
543     }
544
545     /// Parses bounds of a type parameter `BOUND + BOUND + ...`, possibly with trailing `+`.
546     ///
547     /// See `parse_generic_bound` for the `BOUND` grammar.
548     fn parse_generic_bounds_common(
549         &mut self,
550         allow_plus: AllowPlus,
551         colon_span: Option<Span>,
552     ) -> PResult<'a, GenericBounds> {
553         let mut bounds = Vec::new();
554         let mut negative_bounds = Vec::new();
555
556         while self.can_begin_bound() || self.token.is_keyword(kw::Dyn) {
557             if self.token.is_keyword(kw::Dyn) {
558                 // Account for `&dyn Trait + dyn Other`.
559                 self.struct_span_err(self.token.span, "invalid `dyn` keyword")
560                     .help("`dyn` is only needed at the start of a trait `+`-separated list")
561                     .span_suggestion(
562                         self.token.span,
563                         "remove this keyword",
564                         String::new(),
565                         Applicability::MachineApplicable,
566                     )
567                     .emit();
568                 self.bump();
569             }
570             match self.parse_generic_bound()? {
571                 Ok(bound) => bounds.push(bound),
572                 Err(neg_sp) => negative_bounds.push(neg_sp),
573             }
574             if allow_plus == AllowPlus::No || !self.eat_plus() {
575                 break;
576             }
577         }
578
579         if !negative_bounds.is_empty() {
580             self.error_negative_bounds(colon_span, &bounds, negative_bounds);
581         }
582
583         Ok(bounds)
584     }
585
586     /// Can the current token begin a bound?
587     fn can_begin_bound(&mut self) -> bool {
588         // This needs to be synchronized with `TokenKind::can_begin_bound`.
589         self.check_path()
590         || self.check_lifetime()
591         || self.check(&token::Not) // Used for error reporting only.
592         || self.check(&token::Question)
593         || self.check_keyword(kw::For)
594         || self.check(&token::OpenDelim(token::Paren))
595     }
596
597     fn error_negative_bounds(
598         &self,
599         colon_span: Option<Span>,
600         bounds: &[GenericBound],
601         negative_bounds: Vec<Span>,
602     ) {
603         let negative_bounds_len = negative_bounds.len();
604         let last_span = *negative_bounds.last().expect("no negative bounds, but still error?");
605         let mut err = self.struct_span_err(negative_bounds, "negative bounds are not supported");
606         err.span_label(last_span, "negative bounds are not supported");
607         if let Some(bound_list) = colon_span {
608             let bound_list = bound_list.to(self.prev_token.span);
609             let mut new_bound_list = String::new();
610             if !bounds.is_empty() {
611                 let mut snippets = bounds.iter().map(|bound| self.span_to_snippet(bound.span()));
612                 while let Some(Ok(snippet)) = snippets.next() {
613                     new_bound_list.push_str(" + ");
614                     new_bound_list.push_str(&snippet);
615                 }
616                 new_bound_list = new_bound_list.replacen(" +", ":", 1);
617             }
618             err.tool_only_span_suggestion(
619                 bound_list,
620                 &format!("remove the bound{}", pluralize!(negative_bounds_len)),
621                 new_bound_list,
622                 Applicability::MachineApplicable,
623             );
624         }
625         err.emit();
626     }
627
628     /// Parses a bound according to the grammar:
629     /// ```
630     /// BOUND = TY_BOUND | LT_BOUND
631     /// ```
632     fn parse_generic_bound(&mut self) -> PResult<'a, Result<GenericBound, Span>> {
633         let anchor_lo = self.prev_token.span;
634         let lo = self.token.span;
635         let has_parens = self.eat(&token::OpenDelim(token::Paren));
636         let inner_lo = self.token.span;
637         let is_negative = self.eat(&token::Not);
638
639         let modifiers = self.parse_ty_bound_modifiers();
640         let bound = if self.token.is_lifetime() {
641             self.error_lt_bound_with_modifiers(modifiers);
642             self.parse_generic_lt_bound(lo, inner_lo, has_parens)?
643         } else {
644             self.parse_generic_ty_bound(lo, has_parens, modifiers)?
645         };
646
647         Ok(if is_negative { Err(anchor_lo.to(self.prev_token.span)) } else { Ok(bound) })
648     }
649
650     /// Parses a lifetime ("outlives") bound, e.g. `'a`, according to:
651     /// ```
652     /// LT_BOUND = LIFETIME
653     /// ```
654     fn parse_generic_lt_bound(
655         &mut self,
656         lo: Span,
657         inner_lo: Span,
658         has_parens: bool,
659     ) -> PResult<'a, GenericBound> {
660         let bound = GenericBound::Outlives(self.expect_lifetime());
661         if has_parens {
662             // FIXME(Centril): Consider not erroring here and accepting `('lt)` instead,
663             // possibly introducing `GenericBound::Paren(P<GenericBound>)`?
664             self.recover_paren_lifetime(lo, inner_lo)?;
665         }
666         Ok(bound)
667     }
668
669     /// Emits an error if any trait bound modifiers were present.
670     fn error_lt_bound_with_modifiers(&self, modifiers: BoundModifiers) {
671         if let Some(span) = modifiers.maybe_const {
672             self.struct_span_err(
673                 span,
674                 "`?const` may only modify trait bounds, not lifetime bounds",
675             )
676             .emit();
677         }
678
679         if let Some(span) = modifiers.maybe {
680             self.struct_span_err(span, "`?` may only modify trait bounds, not lifetime bounds")
681                 .emit();
682         }
683     }
684
685     /// Recover on `('lifetime)` with `(` already eaten.
686     fn recover_paren_lifetime(&mut self, lo: Span, inner_lo: Span) -> PResult<'a, ()> {
687         let inner_span = inner_lo.to(self.prev_token.span);
688         self.expect(&token::CloseDelim(token::Paren))?;
689         let mut err = self.struct_span_err(
690             lo.to(self.prev_token.span),
691             "parenthesized lifetime bounds are not supported",
692         );
693         if let Ok(snippet) = self.span_to_snippet(inner_span) {
694             err.span_suggestion_short(
695                 lo.to(self.prev_token.span),
696                 "remove the parentheses",
697                 snippet,
698                 Applicability::MachineApplicable,
699             );
700         }
701         err.emit();
702         Ok(())
703     }
704
705     /// Parses the modifiers that may precede a trait in a bound, e.g. `?Trait` or `?const Trait`.
706     ///
707     /// If no modifiers are present, this does not consume any tokens.
708     ///
709     /// ```
710     /// TY_BOUND_MODIFIERS = "?" ["const" ["?"]]
711     /// ```
712     fn parse_ty_bound_modifiers(&mut self) -> BoundModifiers {
713         if !self.eat(&token::Question) {
714             return BoundModifiers { maybe: None, maybe_const: None };
715         }
716
717         // `? ...`
718         let first_question = self.prev_token.span;
719         if !self.eat_keyword(kw::Const) {
720             return BoundModifiers { maybe: Some(first_question), maybe_const: None };
721         }
722
723         // `?const ...`
724         let maybe_const = first_question.to(self.prev_token.span);
725         self.sess.gated_spans.gate(sym::const_trait_bound_opt_out, maybe_const);
726         if !self.eat(&token::Question) {
727             return BoundModifiers { maybe: None, maybe_const: Some(maybe_const) };
728         }
729
730         // `?const ? ...`
731         let second_question = self.prev_token.span;
732         BoundModifiers { maybe: Some(second_question), maybe_const: Some(maybe_const) }
733     }
734
735     /// Parses a type bound according to:
736     /// ```
737     /// TY_BOUND = TY_BOUND_NOPAREN | (TY_BOUND_NOPAREN)
738     /// TY_BOUND_NOPAREN = [TY_BOUND_MODIFIERS] [for<LT_PARAM_DEFS>] SIMPLE_PATH
739     /// ```
740     ///
741     /// For example, this grammar accepts `?const ?for<'a: 'b> m::Trait<'a>`.
742     fn parse_generic_ty_bound(
743         &mut self,
744         lo: Span,
745         has_parens: bool,
746         modifiers: BoundModifiers,
747     ) -> PResult<'a, GenericBound> {
748         let lifetime_defs = self.parse_late_bound_lifetime_defs()?;
749         let path = self.parse_path(PathStyle::Type)?;
750         if has_parens {
751             if self.token.is_like_plus() {
752                 // Someone has written something like `&dyn (Trait + Other)`. The correct code
753                 // would be `&(dyn Trait + Other)`, but we don't have access to the appropriate
754                 // span to suggest that. When written as `&dyn Trait + Other`, an appropriate
755                 // suggestion is given.
756                 let bounds = vec![];
757                 self.parse_remaining_bounds(bounds, true)?;
758                 self.expect(&token::CloseDelim(token::Paren))?;
759                 let sp = vec![lo, self.prev_token.span];
760                 let sugg: Vec<_> = sp.iter().map(|sp| (*sp, String::new())).collect();
761                 self.struct_span_err(sp, "incorrect braces around trait bounds")
762                     .multipart_suggestion(
763                         "remove the parentheses",
764                         sugg,
765                         Applicability::MachineApplicable,
766                     )
767                     .emit();
768             } else {
769                 self.expect(&token::CloseDelim(token::Paren))?;
770             }
771         }
772
773         let modifier = modifiers.to_trait_bound_modifier();
774         let poly_trait = PolyTraitRef::new(lifetime_defs, path, lo.to(self.prev_token.span));
775         Ok(GenericBound::Trait(poly_trait, modifier))
776     }
777
778     /// Optionally parses `for<$generic_params>`.
779     pub(super) fn parse_late_bound_lifetime_defs(&mut self) -> PResult<'a, Vec<GenericParam>> {
780         if self.eat_keyword(kw::For) {
781             self.expect_lt()?;
782             let params = self.parse_generic_params()?;
783             self.expect_gt()?;
784             // We rely on AST validation to rule out invalid cases: There must not be type
785             // parameters, and the lifetime parameters must not have bounds.
786             Ok(params)
787         } else {
788             Ok(Vec::new())
789         }
790     }
791
792     pub(super) fn check_lifetime(&mut self) -> bool {
793         self.expected_tokens.push(TokenType::Lifetime);
794         self.token.is_lifetime()
795     }
796
797     /// Parses a single lifetime `'a` or panics.
798     pub(super) fn expect_lifetime(&mut self) -> Lifetime {
799         if let Some(ident) = self.token.lifetime() {
800             self.bump();
801             Lifetime { ident, id: ast::DUMMY_NODE_ID }
802         } else {
803             self.span_bug(self.token.span, "not a lifetime")
804         }
805     }
806
807     pub(super) fn mk_ty(&self, span: Span, kind: TyKind) -> P<Ty> {
808         P(Ty { kind, span, id: ast::DUMMY_NODE_ID, tokens: None })
809     }
810 }