]> git.lizzy.rs Git - rust.git/blob - tests/ui/modules/path-macro.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / 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() {}