rust/src/test/ui/dollar-crate/dollar-crate-is-keyword-2.rs
2018-12-25 21:08:33 -07:00

14 lines
311 B
Rust

mod a {}
macro_rules! m {
() => {
use a::$crate; //~ ERROR unresolved import `a::$crate`
use a::$crate::b; //~ ERROR `$crate` in paths can only be used in start position
type A = a::$crate; //~ ERROR `$crate` in paths can only be used in start position
}
}
m!();
fn main() {}