From 79be0802557089b408776ba161d95f8f4b5d0683 Mon Sep 17 00:00:00 2001 From: Ellen Date: Tue, 7 Sep 2021 03:02:12 +0100 Subject: [PATCH] remove comment --- compiler/rustc_trait_selection/src/traits/const_evaluatable.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs b/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs index 8c2a3d4abf41..1aaed7cade28 100644 --- a/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs +++ b/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs @@ -385,7 +385,7 @@ impl<'a, 'tcx> AbstractConstBuilder<'a, 'tcx> { | ExprKind::Repeat { .. } | ExprKind::Array { .. } | ExprKind::Block { .. } - | ExprKind::NeverToAny { .. } // I dont think we can get this without adt construction + | ExprKind::NeverToAny { .. } | ExprKind::Tuple { .. } | ExprKind::Index { .. } | ExprKind::Field { .. }