Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
issues
/
issue-38160.rs
blob: 0395aea63ee97c6032fdefa051ae7e831ef8693c [
file
]
//@ 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
()
{}