about summary refs log tree commit diff
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs')
-rw-r--r--tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs b/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs
index eed8cdc447c..54f362b4413 100644
--- a/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs
+++ b/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/helloworld.rs
@@ -1,11 +1,11 @@
 //@ check-pass
-
+//@ compile-flags: -Znext-solver
 // gate-test-effects
 // ^ effects doesn't have a gate so we will trick tidy into thinking this is a gate test
-
+#![allow(incomplete_features)]
 #![feature(
     const_trait_impl,
-    effects, //~ WARN the feature `effects` is incomplete
+    effects,
     core_intrinsics,
     const_eval_select
 )]