summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/defaults-cyclic-fail-2.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/associated-types/defaults-cyclic-fail-2.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/associated-types/defaults-cyclic-fail-2.rs')
-rw-r--r--src/test/ui/associated-types/defaults-cyclic-fail-2.rs41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/test/ui/associated-types/defaults-cyclic-fail-2.rs b/src/test/ui/associated-types/defaults-cyclic-fail-2.rs
new file mode 100644
index 000000000..e91c9f2d2
--- /dev/null
+++ b/src/test/ui/associated-types/defaults-cyclic-fail-2.rs
@@ -0,0 +1,41 @@
+#![feature(associated_type_defaults)]
+
+// A more complex version of `defaults-cyclic-fail-1.rs`, with non-trivial defaults.
+
+// Having a cycle in assoc. type defaults is okay...
+trait Tr {
+ type A = Vec<Self::B>;
+ type B = Box<Self::A>;
+}
+
+impl Tr for () {}
+
+impl Tr for u8 {
+ type A = u8;
+}
+
+impl Tr for u16 {
+ type B = ();
+}
+
+impl Tr for u32 {
+ type A = ();
+ type B = u8;
+}
+
+impl Tr for bool {
+ type A = Box<Self::B>;
+ //~^ ERROR overflow evaluating the requirement `<bool as Tr>::B == _`
+}
+// (the error is shown twice for some reason)
+
+impl Tr for usize {
+ type B = &'static Self::A;
+ //~^ ERROR overflow evaluating the requirement `<usize as Tr>::A == _`
+}
+
+fn main() {
+ // We don't check that the types project correctly because the cycle errors stop compilation
+ // before `main` is type-checked.
+ // `defaults-cyclic-pass-2.rs` does this.
+}