summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-103790.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/issue-103790.rs')
-rw-r--r--src/test/ui/consts/issue-103790.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/consts/issue-103790.rs b/src/test/ui/consts/issue-103790.rs
deleted file mode 100644
index ea3cac605..000000000
--- a/src/test/ui/consts/issue-103790.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#![feature(generic_const_exprs)]
-#![allow(incomplete_features)]
-
-struct S<const S: (), const S: S = { S }>;
-//~^ ERROR the name `S` is already used for a generic parameter in this item's generic parameters
-//~| ERROR missing generics for struct `S`
-//~| ERROR cycle detected when computing type of `S::S`
-//~| ERROR cycle detected when computing type of `S`
-
-fn main() {}