summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/generic-associated-types-where.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/generic-associated-types/generic-associated-types-where.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/generic-associated-types/generic-associated-types-where.rs')
-rw-r--r--src/test/ui/generic-associated-types/generic-associated-types-where.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/generic-associated-types/generic-associated-types-where.rs b/src/test/ui/generic-associated-types/generic-associated-types-where.rs
deleted file mode 100644
index bbdfffafe..000000000
--- a/src/test/ui/generic-associated-types/generic-associated-types-where.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-// Checking the interaction with this other feature
-#![feature(associated_type_defaults)]
-
-use std::fmt::{Display, Debug};
-
-trait Foo {
- type Assoc where Self: Sized;
- type Assoc2<T> where T: Display;
- type Assoc3<T>;
- type WithDefault<'a, T: Debug + 'a>: ?Sized = dyn Iterator<Item=T>;
- type NoGenerics;
-}
-
-struct Bar;
-
-impl Foo for Bar {
- type Assoc = usize;
- type Assoc2<T> = Vec<T>;
- //~^ ERROR `T` doesn't implement `std::fmt::Display`
- type Assoc3<T> = Vec<T> where T: Iterator;
- //~^ ERROR impl has stricter requirements than trait
- type WithDefault<'a, T: Debug + 'a> = &'a dyn Iterator<Item=T>;
- type NoGenerics = ::std::cell::Cell<i32>;
-}
-
-fn main() {}