rust/tests/ui/dst/dst-bad-assign-3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
800 B
Rust
Raw Normal View History

2017-06-08 05:49:54 +00:00
// Forbid assignment into a dynamically sized type.
#![feature(unsized_tuple_coercion)]
type Fat<T> = (isize, &'static str, T);
2017-06-08 05:49:54 +00:00
#[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.
2019-05-28 18:46:13 +00:00
let f5: &mut Fat<dyn ToBar> = &mut (5, "some str", Bar1 {f :42});
let z: Box<dyn ToBar> = Box::new(Bar1 {f: 36});
2017-06-08 05:49:54 +00:00
f5.2 = Bar1 {f: 36};
//~^ ERROR mismatched types
//~| expected `dyn ToBar`, found `Bar1`
2019-11-14 22:08:08 +00:00
//~| expected trait object `dyn ToBar`
//~| found struct `Bar1`
2018-07-10 21:10:13 +00:00
//~| ERROR the size for values of type
2017-06-08 05:49:54 +00:00
}