]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hygiene/xcrate.rs
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[rust.git] / src / test / ui / hygiene / xcrate.rs
1 // run-pass
2 // ignore-pretty pretty-printing is unhygienic
3
4 // aux-build:xcrate.rs
5
6 #![feature(decl_macro)]
7
8 extern crate xcrate;
9
10 fn main() {
11     xcrate::test!();
12 }