1
Fork 0

Recover from default value for a lifetime in generic parameters.

This commit is contained in:
Lenko Donchev 2023-02-01 20:50:41 -06:00
parent 3de7d7fb22
commit d9f60052d2
5 changed files with 41 additions and 1 deletions

View file

@ -1589,6 +1589,14 @@ pub(crate) struct UnexpectedSelfInGenericParameters {
pub span: Span,
}
#[derive(Diagnostic)]
#[diag(parse_unexpected_default_value_for_lifetime_in_generic_parameters)]
pub(crate) struct UnexpectedDefaultValueForLifetimeInGenericParameters {
#[primary_span]
#[label]
pub span: Span,
}
#[derive(Diagnostic)]
#[diag(parse_multiple_where_clauses)]
pub(crate) struct MultipleWhereClauses {