]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-1211.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / tools / rustfmt / tests / target / issue-1211.rs
1 fn main() {
2     for iface in &ifaces {
3         match iface.addr {
4             get_if_addrs::IfAddr::V4(ref addr) => match addr.broadcast {
5                 Some(ip) => {
6                     sock.send_to(&buf, (ip, 8765)).expect("foobar");
7                 }
8                 _ => (),
9             },
10             _ => (),
11         };
12     }
13 }