summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-12028.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/issues/issue-12028.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/issues/issue-12028.rs')
-rw-r--r--src/test/ui/issues/issue-12028.rs38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/test/ui/issues/issue-12028.rs b/src/test/ui/issues/issue-12028.rs
deleted file mode 100644
index 7503766ff..000000000
--- a/src/test/ui/issues/issue-12028.rs
+++ /dev/null
@@ -1,38 +0,0 @@
-// Test an example where we fail to infer the type parameter H. This
-// is because there is really nothing constraining it. At one time, we
-// would infer based on the where clauses in scope, but that no longer
-// works.
-
-trait Hash<H> {
- fn hash2(&self, hasher: &H) -> u64;
-}
-
-trait Stream {
- fn input(&mut self, bytes: &[u8]);
- fn result(&self) -> u64;
-}
-
-trait StreamHasher {
- type S : Stream;
- fn stream(&self) -> Self::S;
-}
-
-trait StreamHash<H: StreamHasher>: Hash<H> {
- fn input_stream(&self, stream: &mut H::S);
-}
-
-impl<H: StreamHasher> Hash<H> for u8 {
- fn hash2(&self, hasher: &H) -> u64 {
- let mut stream = hasher.stream();
- self.input_stream(&mut stream); //~ ERROR type annotations needed
- Stream::result(&stream)
- }
-}
-
-impl<H: StreamHasher> StreamHash<H> for u8 {
- fn input_stream(&self, stream: &mut H::S) {
- Stream::input(stream, &[*self]);
- }
-}
-
-fn main() {}