Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
macros
/
pub-item-inside-macro.rs
blob: b05d8539d58495e2b7efd5afa847cdb2a5ad4178 [
file
] [
log
] [
blame
]
//@ run-pass
// Issue #14660
//@ pretty-expanded FIXME #23616
mod
bleh
{
macro_rules
!
foo
{
()
=>
{
pub
fn
bar
()
{
}
}
}
foo
!();
}
fn
main
()
{
bleh
::
bar
();
}