blob: efb61e9ed6845c268d9057c802bb338a92f1b6ed [file] [log] [blame] [edit]
//@ check-pass
macro_rules! items {
() => {
type A = ();
fn a() {}
}
}
trait Foo {
type A;
fn a();
}
impl Foo for () {
items!();
}
fn main() {
}