From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/suggestions/issue-59819.rs | 35 ---------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/test/ui/suggestions/issue-59819.rs (limited to 'src/test/ui/suggestions/issue-59819.rs') diff --git a/src/test/ui/suggestions/issue-59819.rs b/src/test/ui/suggestions/issue-59819.rs deleted file mode 100644 index 8e8ff8372..000000000 --- a/src/test/ui/suggestions/issue-59819.rs +++ /dev/null @@ -1,35 +0,0 @@ -// run-rustfix - -#![allow(warnings)] - -// Test that suggestion to add `*` characters applies to implementations of `Deref` as well as -// references. - -struct Foo(i32); - -struct Bar(String); - -impl std::ops::Deref for Foo { - type Target = i32; - fn deref(&self) -> &Self::Target { - &self.0 - } -} - -impl std::ops::Deref for Bar { - type Target = String; - fn deref(&self) -> &Self::Target { - &self.0 - } -} - -fn main() { - let x = Foo(42); - let y: i32 = x; //~ ERROR mismatched types - let a = &42; - let b: i32 = a; //~ ERROR mismatched types - - // Do not make a suggestion when adding a `*` wouldn't actually fix the issue: - let f = Bar("bar".to_string()); - let g: String = f; //~ ERROR mismatched types -} -- cgit v1.2.3