summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mir/drop-elaboration-after-borrowck-error.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/mir/drop-elaboration-after-borrowck-error.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/mir/drop-elaboration-after-borrowck-error.rs')
-rw-r--r--src/test/ui/mir/drop-elaboration-after-borrowck-error.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/mir/drop-elaboration-after-borrowck-error.rs b/src/test/ui/mir/drop-elaboration-after-borrowck-error.rs
deleted file mode 100644
index 624b464ec..000000000
--- a/src/test/ui/mir/drop-elaboration-after-borrowck-error.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Regression test for issue 81708 and issue 91816 where running a drop
-// elaboration on a MIR which failed borrowck lead to an ICE.
-
-static A: () = {
- let a: [String; 1];
- //~^ ERROR destructor of
- a[0] = String::new();
- //~^ ERROR destructor of
- //~| ERROR binding `a` isn't initialized
-};
-
-struct B<T>([T; 1]);
-
-impl<T> B<T> {
- pub const fn f(mut self, other: T) -> Self {
- let _this = self;
- //~^ ERROR destructor of
- self.0[0] = other;
- //~^ ERROR destructor of
- //~| ERROR use of moved value
- self
- }
-}
-
-fn main() {}