summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/region-ends-after-if-condition.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/nll/region-ends-after-if-condition.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/nll/region-ends-after-if-condition.rs')
-rw-r--r--src/test/ui/nll/region-ends-after-if-condition.rs32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/test/ui/nll/region-ends-after-if-condition.rs b/src/test/ui/nll/region-ends-after-if-condition.rs
deleted file mode 100644
index f67de03ca..000000000
--- a/src/test/ui/nll/region-ends-after-if-condition.rs
+++ /dev/null
@@ -1,32 +0,0 @@
-// Basic test for liveness constraints: the region (`R1`) that appears
-// in the type of `p` includes the points after `&v[0]` up to (but not
-// including) the call to `use_x`. The `else` branch is not included.
-
-#![allow(warnings)]
-#![feature(rustc_attrs)]
-
-struct MyStruct {
- field: String
-}
-
-fn foo1() {
- let mut my_struct = MyStruct { field: format!("Hello") };
-
- let value = &my_struct.field;
- if value.is_empty() {
- my_struct.field.push_str("Hello, world!");
- }
-}
-
-fn foo2() {
- let mut my_struct = MyStruct { field: format!("Hello") };
-
- let value = &my_struct.field;
- if value.is_empty() {
- my_struct.field.push_str("Hello, world!");
- //~^ ERROR [E0502]
- }
- drop(value);
-}
-
-fn main() { }