]> git.lizzy.rs Git - rust.git/blob - src/test/ui/modules/path-macro.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[rust.git] / src / test / ui / modules / path-macro.rs
1 macro_rules! foo {
2     () => {"bar.rs"};
3 }
4
5 #[path = foo!()] //~ ERROR malformed `path` attribute
6 mod abc;
7
8 fn main() {}