From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/pattern/issue-95878.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/ui/pattern/issue-95878.rs (limited to 'tests/ui/pattern/issue-95878.rs') diff --git a/tests/ui/pattern/issue-95878.rs b/tests/ui/pattern/issue-95878.rs new file mode 100644 index 000000000..f59814468 --- /dev/null +++ b/tests/ui/pattern/issue-95878.rs @@ -0,0 +1,12 @@ +struct Foo<'a>(&'a ()); + +impl<'a> Foo<'a> { + fn spam(&mut self, baz: &mut Vec) { + match 15 { + ref Self => (), + //~^ ERROR expected identifier, found keyword `Self` + } + } +} + +fn main() {} -- cgit v1.2.3