mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
311 B
Rust
22 lines
311 B
Rust
#![feature(decl_macro)]
|
|
|
|
mod foo {
|
|
pub trait T {
|
|
fn f(&self) {}
|
|
}
|
|
impl T for () {}
|
|
}
|
|
|
|
mod bar {
|
|
use foo::*;
|
|
pub macro m() { ().f() }
|
|
fn f() { ::baz::m!(); }
|
|
}
|
|
|
|
mod baz {
|
|
pub macro m() { ().f() } //~ ERROR no method named `f` found
|
|
fn f() { ::bar::m!(); }
|
|
}
|
|
|
|
fn main() {}
|