Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
macros
/
pub-method-inside-macro.rs
blob: bc918c7a4dc2272512138965dc9eabe5549bbee6 [
file
] [
log
] [
blame
]
// run-pass
// Issue #17436
// pretty-expanded FIXME #23616
mod
bleh
{
macro_rules
!
foo
{
()
=>
{
pub
fn
bar
(&
self
)
{
}
}
}
pub
struct
S
;
impl
S
{
foo
!();
}
}
fn
main
()
{
bleh
::
S
.
bar
();
}