mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
417 B
Rust
15 lines
417 B
Rust
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_dummy = stringify!(a)] // OK
|
|
macro_rules! bar {
|
|
() => {};
|
|
}
|
|
|
|
// FIXME?: `bar` here expands before `stringify` has a chance to expand.
|
|
// `#[rustc_dummy = ...]` is validated and dropped during expansion of `bar`,
|
|
// the "unexpected expression" errors comes from the validation.
|
|
#[rustc_dummy = stringify!(b)] //~ ERROR unexpected expression: `stringify!(b)`
|
|
bar!();
|
|
|
|
fn main() {}
|