blob: 0395aea63ee97c6032fdefa051ae7e831ef8693c [file] [log] [blame] [edit]
//@ 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() {}