blob: d720752f4ca57ba31d0977accc133d66e318ee14 [file]
trait Foo {}
macro_rules! foo(($t:path) => {
impl<T: $t> Foo for T {}
});
foo!(m::m2::A); //~ ERROR cannot find
fn main() {}