mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 18:57:19 +00:00
12 lines
158 B
Rust
12 lines
158 B
Rust
//@ check-pass
|
|
//@ proc-macro: external-macro-use.rs
|
|
|
|
// issue#140255
|
|
|
|
extern crate external_macro_use as macro_use;
|
|
|
|
#[macro_use::a]
|
|
fn f() {}
|
|
|
|
fn main() {}
|