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