blob: 91097874997b4c10cb0f181a67c9f46c067f5375 [file] [log] [blame]
// `ty` matcher accepts trait object types
macro_rules! m {
($t: ty) => ( let _: $t; )
}
fn main() {
m!(dyn Copy + Send + 'static);
//~^ ERROR the trait `Copy` cannot be made into an object
m!(dyn 'static + Send);
m!(dyn 'static +); //~ ERROR at least one trait is required for an object type
}