()
| 189 | #[with_ghost_var(trace: &mut Trace)] |
| 190 | #[trusted] |
| 191 | pub fn empty_netlist() -> Netlist { |
| 192 | let empty = NetEndpoint { |
| 193 | protocol: WasiProto::Unknown, |
| 194 | addr: 0, |
| 195 | port: 0, |
| 196 | }; |
| 197 | |
| 198 | [empty, empty, empty, empty] |
| 199 | } |
| 200 | |
| 201 | // this shouldn't need to be trusted, but prusti does not casting an enum to an int |
| 202 | #[trusted] |
no outgoing calls
no test coverage detected