rust/tests/source/issue-1211.rs
Bryce Van Dyk f3ceb54d3a 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.
2017-10-10 18:51:44 +13:00

16 lines
385 B
Rust

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");
}
_ => ()
}
}
_ => ()
};
}
}