2012-07-11 16:31:35 -05:00
|
|
|
// Minimized version of issue-2804.rs. Both check that callee IDs don't
|
|
|
|
// clobber the previous node ID in a macro expr
|
|
|
|
use std;
|
|
|
|
import std::map::hashmap;
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn add_interfaces(managed_ip: ~str, device: std::map::hashmap<~str, int>) {
|
2012-07-30 18:01:07 -05:00
|
|
|
error!{"%s, %?", managed_ip, device[~"interfaces"]};
|
2012-07-11 16:31:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|