summaryrefslogtreecommitdiff
path: root/tests/ui/macros/issue-2804-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/issue-2804-2.rs')
-rw-r--r--tests/ui/macros/issue-2804-2.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/macros/issue-2804-2.rs b/tests/ui/macros/issue-2804-2.rs
new file mode 100644
index 00000000000..d02725505ac
--- /dev/null
+++ b/tests/ui/macros/issue-2804-2.rs
@@ -0,0 +1,12 @@
+// check-pass
+#![allow(dead_code)]
+// Minimized version of issue-2804.rs. Both check that callee IDs don't
+// clobber the previous node ID in a macro expr
+
+use std::collections::HashMap;
+
+fn add_interfaces(managed_ip: String, device: HashMap<String, isize>) {
+ println!("{}, {}", managed_ip, device["interfaces"]);
+}
+
+pub fn main() {}