summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dst/dst-bad-assign-2.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/dst/dst-bad-assign-2.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/dst/dst-bad-assign-2.rs')
-rw-r--r--src/test/ui/dst/dst-bad-assign-2.rs38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/test/ui/dst/dst-bad-assign-2.rs b/src/test/ui/dst/dst-bad-assign-2.rs
deleted file mode 100644
index 7ba31bf2e..000000000
--- a/src/test/ui/dst/dst-bad-assign-2.rs
+++ /dev/null
@@ -1,38 +0,0 @@
-// Forbid assignment into a dynamically sized type.
-
-struct Fat<T: ?Sized> {
- f1: isize,
- f2: &'static str,
- ptr: T
-}
-
-#[derive(PartialEq,Eq)]
-struct Bar;
-
-#[derive(PartialEq,Eq)]
-struct Bar1 {
- f: isize
-}
-
-trait ToBar {
- fn to_bar(&self) -> Bar;
- fn to_val(&self) -> isize;
-}
-
-impl ToBar for Bar1 {
- fn to_bar(&self) -> Bar {
- Bar
- }
- fn to_val(&self) -> isize {
- self.f
- }
-}
-
-pub fn main() {
- // Assignment.
- let f5: &mut Fat<dyn ToBar> = &mut Fat { f1: 5, f2: "some str", ptr: Bar1 {f :42} };
- let z: Box<dyn ToBar> = Box::new(Bar1 {f: 36});
- f5.ptr = *z;
- //~^ ERROR the size for values of type
-
-}