()
| 8 | |
| 9 | impl Foo { |
| 10 | fn new() -> Self { |
| 11 | Self { |
| 12 | mu1: sync::Arc::new(sync::Mutex::new(1)), |
| 13 | rw1: sync::RwLock::new(1), |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | fn std_mutex_1(&self) { |
| 18 | match *self.mu1.lock().unwrap() { |
nothing calls this directly
no outgoing calls
no test coverage detected