mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
544 B
Rust
19 lines
544 B
Rust
// Test that `dyn ... + ?Sized + ...` is okay (though `?Sized` has no effect in trait objects).
|
|
|
|
trait Foo {}
|
|
|
|
type _0 = dyn ?Sized + Foo;
|
|
//~^ ERROR `?Trait` is not permitted in trait object types
|
|
|
|
type _1 = dyn Foo + ?Sized;
|
|
//~^ ERROR `?Trait` is not permitted in trait object types
|
|
|
|
type _2 = dyn Foo + ?Sized + ?Sized;
|
|
//~^ ERROR `?Trait` is not permitted in trait object types
|
|
//~| ERROR `?Trait` is not permitted in trait object types
|
|
|
|
type _3 = dyn ?Sized + Foo;
|
|
//~^ ERROR `?Trait` is not permitted in trait object types
|
|
|
|
fn main() {}
|