Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
macros
/
use-macro-self.rs
blob: 06464ab0bc94778fdfc9a5022fb3f12c3d1a1dca [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unused_imports
)]
// aux-build:use-macro-self.rs
#[
macro_use
]
extern
crate use_macro_self
;
use
use_macro_self
::
foobarius
::{
self
};
fn
main
()
{
let
_
:
()
=
foobarius
!();
// OK, the macro returns `()`
}