blob: 96360e0331cdb27cb62780a41c5b788ec6fad271 [file] [log] [blame]
// Test that `dyn ?Sized` (i.e., a trait object with only a maybe buond) is not allowed.
type _0 = dyn ?Sized;
//~^ ERROR at least one trait is required for an object type [E0224]
//~| ERROR relaxed bounds are not permitted in trait object types
fn main() {}