mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
24 lines
344 B
Rust
24 lines
344 B
Rust
//@ run-pass
|
|
macro_rules! foo {
|
|
() => {
|
|
struct Bar;
|
|
struct Baz;
|
|
}
|
|
}
|
|
|
|
macro_rules! grault {
|
|
() => {
|
|
foo!();
|
|
struct Xyzzy;
|
|
}
|
|
}
|
|
|
|
fn static_assert_exists<T>() { }
|
|
|
|
fn main() {
|
|
grault!();
|
|
static_assert_exists::<Bar>();
|
|
static_assert_exists::<Baz>();
|
|
static_assert_exists::<Xyzzy>();
|
|
}
|