blob: 0da8b7900a8a54b508e3b108480e31d882c967be [file] [log] [blame]
// 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() {}