From 6b4f47a9356c8430e0686d97f74e8387632129da Mon Sep 17 00:00:00 2001 From: ujjwalVishwakarma2006 <2023ucs0116@iitjammu.ac.in> Date: Mon, 23 Mar 2026 18:04:34 +0530 Subject: [PATCH 1/3] Move: two test files into relevant directories --- tests/ui/{issues/issue-17734.rs => box/box-str-ice.rs} | 0 .../issue-4735.rs => drop/drop-noncopyable-raw-pointer.rs} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename tests/ui/{issues/issue-17734.rs => box/box-str-ice.rs} (100%) rename tests/ui/{issues/issue-4735.rs => drop/drop-noncopyable-raw-pointer.rs} (100%) diff --git a/tests/ui/issues/issue-17734.rs b/tests/ui/box/box-str-ice.rs similarity index 100% rename from tests/ui/issues/issue-17734.rs rename to tests/ui/box/box-str-ice.rs diff --git a/tests/ui/issues/issue-4735.rs b/tests/ui/drop/drop-noncopyable-raw-pointer.rs similarity index 100% rename from tests/ui/issues/issue-4735.rs rename to tests/ui/drop/drop-noncopyable-raw-pointer.rs From 1b049b07d548fb07df914e94d18b70089b91326b Mon Sep 17 00:00:00 2001 From: ujjwalVishwakarma2006 <2023ucs0116@iitjammu.ac.in> Date: Mon, 23 Mar 2026 18:08:41 +0530 Subject: [PATCH 2/3] Add issue number for which the test was generated at the top --- tests/ui/box/box-str-ice.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ui/box/box-str-ice.rs b/tests/ui/box/box-str-ice.rs index 984adeece6dee..6a25db722af74 100644 --- a/tests/ui/box/box-str-ice.rs +++ b/tests/ui/box/box-str-ice.rs @@ -1,3 +1,4 @@ +//! regression test for //@ run-pass // Test that generating drop glue for Box doesn't ICE From c5e261285bc80651bf4871835e85b89f65d1aaf8 Mon Sep 17 00:00:00 2001 From: ujjwalVishwakarma2006 <2023ucs0116@iitjammu.ac.in> Date: Tue, 24 Mar 2026 06:25:22 +0530 Subject: [PATCH 3/3] Add issue number for which the test was generated at the top --- tests/ui/drop/drop-noncopyable-raw-pointer.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ui/drop/drop-noncopyable-raw-pointer.rs b/tests/ui/drop/drop-noncopyable-raw-pointer.rs index 1ca145bae420d..8e980a23c904b 100644 --- a/tests/ui/drop/drop-noncopyable-raw-pointer.rs +++ b/tests/ui/drop/drop-noncopyable-raw-pointer.rs @@ -1,3 +1,4 @@ +//! regression test for //@ run-pass use std::mem::transmute;