summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-54556-wrap-it-up.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-54556-wrap-it-up.rs')
-rw-r--r--src/test/ui/nll/issue-54556-wrap-it-up.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/nll/issue-54556-wrap-it-up.rs b/src/test/ui/nll/issue-54556-wrap-it-up.rs
deleted file mode 100644
index 11dbef0d8..000000000
--- a/src/test/ui/nll/issue-54556-wrap-it-up.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-// This is testing how the diagnostic from issue #54556 behaves when
-// the destructor code is attached to a place held in a field of the
-// temporary being dropped.
-//
-// Eventually it would be nice if the diagnostic would actually report
-// that specific place and its type that implements the `Drop` trait.
-// But for the short term, it is acceptable to just print out the
-// whole type of the temporary.
-
-#![allow(warnings)]
-
-struct Wrap<'p> { p: &'p mut i32 }
-
-impl<'p> Drop for Wrap<'p> {
- fn drop(&mut self) {
- *self.p += 1;
- }
-}
-
-struct Foo<'p> { a: String, b: Wrap<'p> }
-
-fn main() {
- let mut x = 0;
- let wrap = Wrap { p: &mut x };
- let s = String::from("str");
- let foo = Foo { a: s, b: wrap };
- x = 1; //~ ERROR cannot assign to `x` because it is borrowed [E0506]
-}