mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
182 B
Rust
21 lines
182 B
Rust
// run-pass
|
|
macro_rules! items {
|
|
() => {
|
|
type A = ();
|
|
fn a() {}
|
|
}
|
|
}
|
|
|
|
trait Foo {
|
|
type A;
|
|
fn a();
|
|
}
|
|
|
|
impl Foo for () {
|
|
items!();
|
|
}
|
|
|
|
fn main() {
|
|
|
|
}
|