()
| 209 | |
| 210 | #[test] |
| 211 | fn resident_bytes_does_not_panic() { |
| 212 | let reg = CollectionArenaRegistry::new(); |
| 213 | let h = reg.get_or_create(1, "test_resident").expect("create"); |
| 214 | // Must not panic; may return None when stats are unavailable. |
| 215 | let _ = h.resident_bytes(); |
| 216 | } |
| 217 | } |
nothing calls this directly
no test coverage detected