summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/issues/issue-68366.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/issues/issue-68366.rs')
-rw-r--r--src/test/ui/const-generics/issues/issue-68366.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/const-generics/issues/issue-68366.rs b/src/test/ui/const-generics/issues/issue-68366.rs
deleted file mode 100644
index 4c2741ab4..000000000
--- a/src/test/ui/const-generics/issues/issue-68366.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-// Checks that const expressions have a useful note explaining why they can't be evaluated.
-// The note should relate to the fact that it cannot be shown forall N that it maps 1-1 to a new
-// type.
-
-// revisions: full min
-#![cfg_attr(full, feature(generic_const_exprs))]
-#![cfg_attr(full, allow(incomplete_features))]
-
-struct Collatz<const N: Option<usize>>;
-
-impl <const N: usize> Collatz<{Some(N)}> {}
-//~^ ERROR the const parameter
-//[min]~^^ generic parameters may not be used in const operations
-
-struct Foo;
-
-impl<const N: usize> Foo {}
-//~^ ERROR the const parameter
-
-fn main() {}