rust/tests/ui/hygiene/xcrate.rs
2025-11-27 11:19:00 -05:00

12 lines
138 B
Rust

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