2017-06-08 05:49:54 +00:00
|
|
|
// Forbid assignment into a dynamically sized type.
|
|
|
|
|
2017-06-24 07:20:27 +00:00
|
|
|
#![feature(unsized_tuple_coercion)]
|
|
|
|
|
2018-02-20 13:52:23 +00:00
|
|
|
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
|
2023-01-03 02:00:33 +00:00
|
|
|
//~| expected `dyn ToBar`, found `Bar1`
|
2019-11-14 22:08:08 +00:00
|
|
|
//~| expected trait object `dyn ToBar`
|
2019-11-13 22:16:56 +00:00
|
|
|
//~| 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
|
|
|
}
|