From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- ...-type-params-by-name-in-suggestion-issue-96292.rs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs (limited to 'tests/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs') diff --git a/tests/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs b/tests/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs new file mode 100644 index 000000000..9a444be50 --- /dev/null +++ b/tests/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs @@ -0,0 +1,20 @@ +struct Thing(X); + +trait Method { + fn method(self, _: i32) -> T; +} + +impl Method for Thing { + fn method(self, _: i32) -> i32 { 0 } +} + +impl Method for Thing { + fn method(self, _: i32) -> u32 { 0 } +} + +fn main() { + let thing = Thing(true); + thing.method(42); + //~^ ERROR type annotations needed + //~| ERROR type annotations needed +} -- cgit v1.2.3