summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-mut-refs/mut_ref_in_final.stderr
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/consts/const-mut-refs/mut_ref_in_final.stderr
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/consts/const-mut-refs/mut_ref_in_final.stderr')
-rw-r--r--src/test/ui/consts/const-mut-refs/mut_ref_in_final.stderr60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/test/ui/consts/const-mut-refs/mut_ref_in_final.stderr b/src/test/ui/consts/const-mut-refs/mut_ref_in_final.stderr
deleted file mode 100644
index 78c58b5ab..000000000
--- a/src/test/ui/consts/const-mut-refs/mut_ref_in_final.stderr
+++ /dev/null
@@ -1,60 +0,0 @@
-error[E0764]: mutable references are not allowed in the final value of constants
- --> $DIR/mut_ref_in_final.rs:10:21
- |
-LL | const B: *mut i32 = &mut 4;
- | ^^^^^^
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/mut_ref_in_final.rs:16:40
- |
-LL | const B3: Option<&mut i32> = Some(&mut 42);
- | ----------^^-
- | | | |
- | | | temporary value is freed at the end of this statement
- | | creates a temporary value which is freed while still in use
- | using this value as a constant requires that borrow lasts for `'static`
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/mut_ref_in_final.rs:19:42
- |
-LL | const B4: Option<&mut i32> = helper(&mut 42);
- | ------------^^-
- | | | |
- | | | temporary value is freed at the end of this statement
- | | creates a temporary value which is freed while still in use
- | using this value as a constant requires that borrow lasts for `'static`
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/mut_ref_in_final.rs:34:65
- |
-LL | const FOO: NotAMutex<&mut i32> = NotAMutex(UnsafeCell::new(&mut 42));
- | -------------------------------^^--
- | | | |
- | | | temporary value is freed at the end of this statement
- | | creates a temporary value which is freed while still in use
- | using this value as a constant requires that borrow lasts for `'static`
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/mut_ref_in_final.rs:37:67
- |
-LL | static FOO2: NotAMutex<&mut i32> = NotAMutex(UnsafeCell::new(&mut 42));
- | -------------------------------^^--
- | | | |
- | | | temporary value is freed at the end of this statement
- | | creates a temporary value which is freed while still in use
- | using this value as a static requires that borrow lasts for `'static`
-
-error[E0716]: temporary value dropped while borrowed
- --> $DIR/mut_ref_in_final.rs:40:71
- |
-LL | static mut FOO3: NotAMutex<&mut i32> = NotAMutex(UnsafeCell::new(&mut 42));
- | -------------------------------^^--
- | | | |
- | | | temporary value is freed at the end of this statement
- | | creates a temporary value which is freed while still in use
- | using this value as a static requires that borrow lasts for `'static`
-
-error: aborting due to 6 previous errors
-
-Some errors have detailed explanations: E0716, E0764.
-For more information about an error, try `rustc --explain E0716`.