Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
stringify.rs
blob: 0350a3cea4d3eee1dd95eca06fc47e184b6cbcfb [
file
] [
log
] [
blame
]
#![
feature
(
rustc_attrs
)]
#[
rustc_builtin_macro
]
macro_rules
!
stringify
{
()
=>
{};
}
fn
main
()
{
let
_a
=
stringify
!(
sample text with parenthesis
()
and things
!
This
will become a
"string"
.);
}