summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/suggest-where-clause.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/traits/suggest-where-clause.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/traits/suggest-where-clause.rs')
-rw-r--r--src/test/ui/traits/suggest-where-clause.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/test/ui/traits/suggest-where-clause.rs b/src/test/ui/traits/suggest-where-clause.rs
deleted file mode 100644
index 46d047a2d..000000000
--- a/src/test/ui/traits/suggest-where-clause.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-use std::mem;
-
-struct Misc<T:?Sized>(T);
-
-fn check<T: Iterator, U: ?Sized>() {
- // suggest a where-clause, if needed
- mem::size_of::<U>();
- //~^ ERROR the size for values of type
-
- mem::size_of::<Misc<U>>();
- //~^ ERROR the size for values of type
-
- // ... even if T occurs as a type parameter
-
- <u64 as From<T>>::from;
- //~^ ERROR `u64: From<T>` is not satisfied
-
- <u64 as From<<T as Iterator>::Item>>::from;
- //~^ ERROR `u64: From<<T as Iterator>::Item>` is not satisfied
-
- // ... but not if there are inference variables
-
- <Misc<_> as From<T>>::from;
- //~^ ERROR `Misc<_>: From<T>` is not satisfied
-
- // ... and also not if the error is not related to the type
-
- mem::size_of::<[T]>();
- //~^ ERROR the size for values of type
-
- mem::size_of::<[&U]>();
- //~^ ERROR the size for values of type
-}
-
-fn main() {
-}