// { dg-options "-frust-name-resolution-2.0 -frust-compile-until=lowering" }#![feature(decl_macro)]pub mod foo {pub mod bar {pub mod baz {// macros 2.0 get inserted in Ribs like itemspub macroboof() {}}}}#[macro_export]fnmain() {
foo::bar::baz::boof!();crate::foo::bar::baz::boof!();self::foo::bar::baz::boof!();}