rust/tests/ui/hygiene/xcrate.rs
2023-04-03 09:24:11 +02:00

12 lines
119 B
Rust

// run-pass
// aux-build:xcrate.rs
#![feature(decl_macro)]
extern crate xcrate;
fn main() {
xcrate::test!();
}