blob: efb61e9ed6845c268d9057c802bb338a92f1b6ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//@ check-pass
macro_rules! items {
() => {
type A = ();
fn a() {}
}
}
trait Foo {
type A;
fn a();
}
impl Foo for () {
items!();
}
fn main() {
}
|