Add a test for issue 1211, showing it's no longer an issue.

Since rustfmt has moved away from syntex the overflow seen in issue 1211
is no longer a problem. This commit adds a test to verify that.
This commit is contained in:
Bryce Van Dyk 2017-10-10 18:51:44 +13:00
parent 6c9ee313a2
commit f3ceb54d3a
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,15 @@
fn main() {
for iface in &ifaces {
match iface.addr {
get_if_addrs::IfAddr::V4(ref addr) => {
match addr.broadcast {
Some(ip) => {
sock.send_to(&buf, (ip, 8765)).expect("foobar");
}
_ => ()
}
}
_ => ()
};
}
}

View File

@ -0,0 +1,13 @@
fn main() {
for iface in &ifaces {
match iface.addr {
get_if_addrs::IfAddr::V4(ref addr) => match addr.broadcast {
Some(ip) => {
sock.send_to(&buf, (ip, 8765)).expect("foobar");
}
_ => (),
},
_ => (),
};
}
}