Skip to content

Commit

Permalink
Rollup merge of #95135 - TaKO8Ki:fix-not-emitted-unmatched-angle-brac…
Browse files Browse the repository at this point in the history
…ket-error, r=Dylan-DPC

Fix a not emitted unmatched angle bracket error

closes #95128
  • Loading branch information
matthiaskrgr committed Mar 20, 2022
2 parents 7557c08 + 5c8aaed commit 63da51d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_parse/src/parser/item.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ impl<'a> Parser<'a> {
// `check_trailing_angle_brackets` already emitted a nicer error
// NOTE(eddyb) this was `.cancel()`, but `err`
// gets returned, so we can't fully defuse it.
err.downgrade_to_delayed_bug();
err.delay_as_bug();
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
struct TypedArenaChunk {
next: Option<String>>
//~^ ERROR unmatched angle bracket
}

fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
error: unmatched angle bracket
--> $DIR/recover-field-extra-angle-brackets-in-struct-with-a-field.rs:2:25
|
LL | next: Option<String>>
| _________________________^
LL | |
LL | | }
| |_ help: remove extra angle bracket

error: aborting due to previous error

0 comments on commit 63da51d

Please sign in to comment.