Sign in
◑
Theme
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
macros
/
macro_undefined.rs
blob: 6ca1eb568616c0a479a4f2215fe3dac471bd112e [
file
]
// Test macro_undefined issue
mod
m
{
#[
macro_export
]
macro_rules
!
kl
{
()
=>
()
}
}
fn
main
()
{
k
!();
//~ ERROR cannot find
kl
!();
}