23 lines
341 B
Rust
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() {}
|