Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
local-modularized-tricky-pass-1.rs
blob: e809e5e4d8991c4c40337fb7efb05fa0405dcfc0 [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass (FIXME(62277): could be check-pass?)
macro_rules
!
define_exported
{
()
=>
{
#[
macro_export
]
macro_rules
!
exported
{
()
=>
()
}
}}
mod
inner1
{
use
super
::*;
exported
!();
}
mod
inner2
{
define_exported
!();
}
fn
main
()
{}