mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
456 B
Rust
23 lines
456 B
Rust
// force-host
|
|
// no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro_derive(AddImpl)]
|
|
// Unnecessary qualification `bar::foo`
|
|
// https://github.com/rust-lang/rust/issues/71898
|
|
pub fn derive(input: TokenStream) -> TokenStream {
|
|
"impl B {
|
|
fn foo(&self) { use bar::foo; bar::foo() }
|
|
}
|
|
|
|
fn foo() {}
|
|
|
|
mod bar { pub fn foo() {} }
|
|
".parse().unwrap()
|
|
}
|