about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2019-11-26 12:13:15 -0800
committerDylan MacKenzie <ecstaticmorse@gmail.com>2019-11-26 12:13:15 -0800
commita626bf68b882d41dc608692dc52b2a9fb06bff26 (patch)
tree5d2cf93eeace42879acb625253ff596a91e627bc
parent582affd657701aa8fff42b9e0eb32d23796167b5 (diff)
Remove test for #66758
-rw-r--r--src/test/ui/consts/control-flow/exhaustive-c-like-enum-match.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/ui/consts/control-flow/exhaustive-c-like-enum-match.rs b/src/test/ui/consts/control-flow/exhaustive-c-like-enum-match.rs
index d24179d856f..9e22151f2e9 100644
--- a/src/test/ui/consts/control-flow/exhaustive-c-like-enum-match.rs
+++ b/src/test/ui/consts/control-flow/exhaustive-c-like-enum-match.rs
@@ -18,10 +18,4 @@ const fn f(e: E) {
     }
 }
 
-const fn g(e: E) {
-    match e {
-        _ => {}
-    }
-}
-
 fn main() {}