From 4547b622d8d29df964fa2914213088b148c498fc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:32 +0200 Subject: Merging upstream version 1.67.1+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/dropck/issue-54943-1.rs | 13 +++++++++++++ src/test/ui/dropck/issue-54943-2.rs | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 src/test/ui/dropck/issue-54943-1.rs create mode 100644 src/test/ui/dropck/issue-54943-2.rs (limited to 'src/test/ui/dropck') diff --git a/src/test/ui/dropck/issue-54943-1.rs b/src/test/ui/dropck/issue-54943-1.rs new file mode 100644 index 000000000..ec682d960 --- /dev/null +++ b/src/test/ui/dropck/issue-54943-1.rs @@ -0,0 +1,13 @@ +// This test is a minimal version of an ICE in the dropck-eyepatch tests +// found in the fix for #54943. + +// check-pass + +fn foo(_t: T) { +} + +fn main() { + struct A<'a, B: 'a>(&'a B); + let (a1, a2): (String, A<_>) = (String::from("auto"), A(&"this")); + foo((a1, a2)); +} diff --git a/src/test/ui/dropck/issue-54943-2.rs b/src/test/ui/dropck/issue-54943-2.rs new file mode 100644 index 000000000..d400ae58d --- /dev/null +++ b/src/test/ui/dropck/issue-54943-2.rs @@ -0,0 +1,16 @@ +// This test is a minimal version of an ICE in the dropck-eyepatch tests +// found in the fix for #54943. In particular, this test is in unreachable +// code as the initial fix for this ICE only worked if the code was reachable. + +// check-pass + +fn foo(_t: T) { +} + +fn main() { + return; + + struct A<'a, B: 'a>(&'a B); + let (a1, a2): (String, A<_>) = (String::from("auto"), A(&"this")); + foo((a1, a2)); +} -- cgit v1.2.3