2024-02-16 20:02:50 +00:00
|
|
|
//@ edition:2018
|
2021-05-04 06:48:56 +00:00
|
|
|
|
|
|
|
fn foo1(_: &dyn Drop + AsRef<str>) {} //~ ERROR ambiguous `+` in a type
|
|
|
|
//~^ ERROR only auto traits can be used as additional traits in a trait object
|
|
|
|
|
2023-08-14 09:51:19 +00:00
|
|
|
fn foo2(_: &dyn (Drop + AsRef<str>)) {} //~ ERROR incorrect parentheses around trait bounds
|
2021-05-04 06:48:56 +00:00
|
|
|
|
2023-08-14 09:51:19 +00:00
|
|
|
fn foo2_no_space(_: &dyn(Drop + AsRef<str>)) {} //~ ERROR incorrect parentheses around trait bounds
|
2023-01-05 19:43:08 +00:00
|
|
|
|
2021-05-04 06:48:56 +00:00
|
|
|
fn foo3(_: &dyn {Drop + AsRef<str>}) {} //~ ERROR expected parameter name, found `{`
|
2024-06-05 20:18:52 +00:00
|
|
|
//~^ ERROR expected one of `!`, `(`, `)`, `*`, `,`, `?`, `async`, `const`, `for`, `use`, `~`, lifetime, or path, found `{`
|
2021-05-04 06:48:56 +00:00
|
|
|
//~| ERROR at least one trait is required for an object type
|
|
|
|
|
|
|
|
fn foo4(_: &dyn <Drop + AsRef<str>>) {} //~ ERROR expected identifier, found `<`
|
|
|
|
|
|
|
|
fn foo5(_: &(dyn Drop + dyn AsRef<str>)) {} //~ ERROR invalid `dyn` keyword
|
|
|
|
//~^ ERROR only auto traits can be used as additional traits in a trait object
|
|
|
|
|
|
|
|
fn main() {}
|