This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-05-03 05:27:36 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
7b8644e5cf
rust
/
tests
/
ui
/
macros
/
macro-in-fn.rs
9 lines
93 B
Rust
Raw
Normal View
History
Unescape
Escape
review comments
2019-08-21 23:11:01 +00:00
// run-pass
When declaring a declarative macro in an item it's only accessible inside it
2019-08-16 01:58:20 +00:00
#![
feature(decl_macro)
]
pub
fn
moo
(
)
{
pub
macro
ABC
(
)
{
{
}
}
}
review comments
2019-08-21 23:11:01 +00:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink