rust/tests/ui/hygiene/xcrate.rs
2023-01-11 09:32:08 +00:00

13 lines
166 B
Rust

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