summary refs log tree commit diff
path: root/src/test/ui/bad/bad-sized.rs
blob: b899c59ff2ea702b31c5f758c7bd7633789c4dd1 (plain)
1
2
3
4
5
6
7
8
trait Trait {}

pub fn main() {
    let x: Vec<dyn Trait + Sized> = Vec::new();
    //~^ ERROR only auto traits can be used as additional traits in a trait object
    //~| ERROR the size for values of type
    //~| ERROR the size for values of type
}