about summary refs log tree commit diff
path: root/tests/ui/match
diff options
context:
space:
mode:
authorOneirical <manchot@videotron.ca>2025-07-13 15:56:27 -0400
committerOneirical <manchot@videotron.ca>2025-07-24 17:01:44 -0400
commita924d44115b632775ef0d2e12382e285953b0c2c (patch)
tree4cb6005288fc4a7407006094892fcf577f3f30cf /tests/ui/match
parent246733a3d978de41c5b77b8120ba8f41592df9f1 (diff)
downloadrust-a924d44115b632775ef0d2e12382e285953b0c2c.tar.gz
rust-a924d44115b632775ef0d2e12382e285953b0c2c.zip
Rehome tests/ui/issues/ tests [1/?]
Diffstat (limited to 'tests/ui/match')
-rw-r--r--tests/ui/match/innocent-looking-match-crash-46964.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/match/innocent-looking-match-crash-46964.rs b/tests/ui/match/innocent-looking-match-crash-46964.rs
new file mode 100644
index 00000000000..c3efe874703
--- /dev/null
+++ b/tests/ui/match/innocent-looking-match-crash-46964.rs
@@ -0,0 +1,21 @@
+//@ check-pass
+mod my_mod {
+    #[derive(Clone, Copy, Eq, PartialEq, PartialOrd, Ord, Hash)]
+    pub struct Name<'a> {
+        source: &'a str,
+    }
+
+    pub const JSON: Name = Name { source: "JSON" };
+}
+
+pub fn crash() -> bool {
+  match (my_mod::JSON, None) {
+    (_, Some(my_mod::JSON)) => true,
+    (my_mod::JSON, None) => true,
+    _ => false,
+  }
+}
+
+fn main() {}
+
+// https://github.com/rust-lang/rust/issues/46964