Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
issue-19163.rs
blob: 0c0d9e43c1d2475423d008d55d484c95510e5aed [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
#[
macro_export
]
macro_rules
!
mywrite
{
(
$dst
:
expr
,
$
(
$arg
:
tt
)*)
=>
(
$dst
.
write_fmt
(
format_args
!(
$
(
$arg
)*)))
}