about summary refs log tree commit diff
path: root/tests/ui/macros/macro-path-prelude-fail-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/macro-path-prelude-fail-1.rs')
-rw-r--r--tests/ui/macros/macro-path-prelude-fail-1.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/macros/macro-path-prelude-fail-1.rs b/tests/ui/macros/macro-path-prelude-fail-1.rs
new file mode 100644
index 00000000000..d93792bdfe3
--- /dev/null
+++ b/tests/ui/macros/macro-path-prelude-fail-1.rs
@@ -0,0 +1,8 @@
+mod m {
+    fn check() {
+        Vec::clone!(); //~ ERROR failed to resolve: `Vec` is a struct, not a module
+        u8::clone!(); //~ ERROR failed to resolve: `u8` is a builtin type, not a module
+    }
+}
+
+fn main() {}