summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/match-const-fn-structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/match-const-fn-structs.rs')
-rw-r--r--src/test/ui/consts/match-const-fn-structs.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/consts/match-const-fn-structs.rs b/src/test/ui/consts/match-const-fn-structs.rs
deleted file mode 100644
index 5a68048c4..000000000
--- a/src/test/ui/consts/match-const-fn-structs.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-// run-pass
-#![allow(unused_variables)]
-
-// https://github.com/rust-lang/rust/issues/46114
-
-#[derive(Eq, PartialEq)]
-struct A { value: u32 }
-
-const fn new(value: u32) -> A {
- A { value }
-}
-
-const A_1: A = new(1);
-const A_2: A = new(2);
-
-fn main() {
- let a_str = match new(42) {
- A_1 => "A 1",
- A_2 => "A 2",
- _ => "Unknown A",
- };
-}