mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
10 lines
183 B
Rust
10 lines
183 B
Rust
//@ proc-macro: hygiene_example_codegen.rs
|
|
|
|
extern crate hygiene_example_codegen;
|
|
|
|
pub use hygiene_example_codegen::hello;
|
|
|
|
pub fn print(string: &str) {
|
|
println!("{}", string);
|
|
}
|