rust/src/test/ui/issues/issue-38160.rs
2018-12-25 21:08:33 -07:00

23 lines
341 B
Rust

// compile-pass
// skip-codegen
#![feature(associated_consts)]
#![allow(warnings)]
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() {}