From 3c1a2efdf36a76f87bb1c3e3a346113b9394de7b Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Wed, 25 Sep 2024 18:50:04 +0200 Subject: [PATCH] feat: remove non_exhaustive from Instr enum (#277) --- src/ir/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ir/mod.rs b/src/ir/mod.rs index d897275b..f60d2569 100644 --- a/src/ir/mod.rs +++ b/src/ir/mod.rs @@ -249,7 +249,6 @@ pub(crate) enum BlockKind { /// ``` #[walrus_instr] #[derive(Clone, Debug)] -#[non_exhaustive] pub enum Instr { /// `block ... end` #[walrus(skip_builder)]