summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-103790.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/issue-103790.rs')
-rw-r--r--tests/ui/consts/issue-103790.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/consts/issue-103790.rs b/tests/ui/consts/issue-103790.rs
new file mode 100644
index 000000000..ea3cac605
--- /dev/null
+++ b/tests/ui/consts/issue-103790.rs
@@ -0,0 +1,10 @@
+#![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() {}