Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
deriving
/
deriving-in-macro.rs
blob: e86b40d30dcf0c19b39a97f52ce3abf966001124 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
#![
allow
(
non_camel_case_types
)]
macro_rules
!
define_vec
{
()
=>
(
mod
foo
{
#[
derive
(
PartialEq
)]
pub
struct
bar
;
}
)
}
define_vec
![];
pub
fn
main
()
{}