blob: d78b958463fcb8e14e253ee91d468541fe5738e8 [file] [log] [blame]
macro_rules! m {
($my_type: ty) => {
impl $my_type for u8 {}
}
}
trait Tr {}
m!(Tr);
m!(&'static u8); //~ ERROR expected a trait, found type
fn main() {}