Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-38160.rs
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
()
{}