summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-66357-unexpected-unreachable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-66357-unexpected-unreachable.rs')
-rw-r--r--tests/ui/parser/issues/issue-66357-unexpected-unreachable.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/parser/issues/issue-66357-unexpected-unreachable.rs b/tests/ui/parser/issues/issue-66357-unexpected-unreachable.rs
new file mode 100644
index 000000000..aed428bfc
--- /dev/null
+++ b/tests/ui/parser/issues/issue-66357-unexpected-unreachable.rs
@@ -0,0 +1,14 @@
+// The problem in #66357 was that the call trace:
+//
+// - parse_fn_block_decl
+// - expect_or
+// - unexpected
+// - expect_one_of
+// - expected_one_of_not_found
+// - recover_closing_delimiter
+//
+// ended up bubbling up `Ok(true)` to `unexpected` which then used `unreachable!()`.
+
+fn f() { |[](* }
+//~^ ERROR expected one of `,` or `:`, found `(`
+//~| ERROR expected one of `&`, `(`, `)`, `-`, `...`, `..=`, `..`, `[`, `_`, `box`, `mut`, `ref`, `|`, identifier, or path, found `*`