about summary refs log tree commit diff
path: root/tests/ui/modules/path-macro.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/modules/path-macro.rs')
-rw-r--r--tests/ui/modules/path-macro.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/modules/path-macro.rs b/tests/ui/modules/path-macro.rs
new file mode 100644
index 00000000000..ce2d1e2da26
--- /dev/null
+++ b/tests/ui/modules/path-macro.rs
@@ -0,0 +1,8 @@
+macro_rules! foo {
+    () => {"bar.rs"};
+}
+
+#[path = foo!()] //~ ERROR malformed `path` attribute
+mod abc;
+
+fn main() {}