From a626bf68b882d41dc608692dc52b2a9fb06bff26 Mon Sep 17 00:00:00 2001 From: Dylan MacKenzie Date: Tue, 26 Nov 2019 12:13:15 -0800 Subject: [PATCH] Remove test for #66758 --- .../ui/consts/control-flow/exhaustive-c-like-enum-match.rs | 6 ------ 1 file changed, 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 d24179d856f4..9e22151f2e9e 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() {}