summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/move-error-snippets-ext.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/move-error-snippets-ext.rs')
-rw-r--r--tests/ui/borrowck/move-error-snippets-ext.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/borrowck/move-error-snippets-ext.rs b/tests/ui/borrowck/move-error-snippets-ext.rs
new file mode 100644
index 000000000..c77f6c827
--- /dev/null
+++ b/tests/ui/borrowck/move-error-snippets-ext.rs
@@ -0,0 +1,7 @@
+// ignore-test
+
+macro_rules! aaa {
+ ($c:ident) => {{
+ let a = $c;
+ }}
+}