blob: 02a0e14d55e625c0aed356d87f3591f1245f8e5b [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
trait Foo1 {}
trait A {}
macro_rules! foo1(($t:path) => {
impl<T: $t> Foo1 for T {}
});
foo1!(A);
trait Foo2 {}
trait B<T> {}
#[allow(unused)]
struct C {}
macro_rules! foo2(($t:path) => {
impl<T: $t> Foo2 for T {}
});
foo2!(B<C>);
fn main() {}