mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
326 B
Rust
23 lines
326 B
Rust
// run-pass
|
|
// #42164
|
|
|
|
#![feature(decl_macro)]
|
|
#![allow(dead_code)]
|
|
|
|
pub macro m($inner_str:expr) {
|
|
#[doc = $inner_str]
|
|
struct S;
|
|
}
|
|
|
|
macro_rules! define_f {
|
|
($name:expr) => {
|
|
#[export_name = $name]
|
|
fn f() {}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
define_f!(concat!("exported_", "f"));
|
|
m!(stringify!(foo));
|
|
}
|