Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
issue-22463.rs
blob: fdf5a2fca72552cd614718abde6c0daa46018834 [
file
] [
log
] [
blame
]
// run-pass
macro_rules
!
items
{
()
=>
{
type
A
=
();
fn
a
()
{}
}
}
trait
Foo
{
type
A
;
fn
a
();
}
impl
Foo
for
()
{
items
!();
}
fn
main
()
{
}