mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
272 B
Rust
20 lines
272 B
Rust
// check-pass
|
|
|
|
trait MyTrait {
|
|
const MY_CONST: &'static str;
|
|
}
|
|
|
|
macro_rules! my_macro {
|
|
() => {
|
|
struct MyStruct;
|
|
|
|
impl MyTrait for MyStruct {
|
|
const MY_CONST: &'static str = stringify!(abc);
|
|
}
|
|
}
|
|
}
|
|
|
|
my_macro!();
|
|
|
|
fn main() {}
|