about summary refs log tree commit diff
path: root/tests/ui/proc-macro/auxiliary/hygiene_example.rs
blob: b690dbfaae7239416683221b35bdd286d2a0ff44 (plain)
1
2
3
4
5
6
7
8
9
//@ proc-macro: hygiene_example_codegen.rs

extern crate hygiene_example_codegen;

pub use hygiene_example_codegen::hello;

pub fn print(string: &str) {
    println!("{}", string);
}