about summary refs log tree commit diff
path: root/tests/ui/issues/issue-46964.rs
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/issues/issue-46964.rs
parent246733a3d978de41c5b77b8120ba8f41592df9f1 (diff)
downloadrust-a924d44115b632775ef0d2e12382e285953b0c2c.tar.gz
rust-a924d44115b632775ef0d2e12382e285953b0c2c.zip
Rehome tests/ui/issues/ tests [1/?]
Diffstat (limited to 'tests/ui/issues/issue-46964.rs')
-rw-r--r--tests/ui/issues/issue-46964.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/ui/issues/issue-46964.rs b/tests/ui/issues/issue-46964.rs
deleted file mode 100644
index 6a29d91df73..00000000000
--- a/tests/ui/issues/issue-46964.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-//@ 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() {}