summary refs log tree commit diff
path: root/src/test/ui/issues/issue-38160.rs
blob: a454211c4df879c10f61300b13823510a3954060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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() {}