()
| 1690 | |
| 1691 | #[test] |
| 1692 | fn str_mut_try_into() { |
| 1693 | let [mut s1, mut s2] = test_strings(); |
| 1694 | let s1: &mut SlimStrMut = &mut s1.as_mut().try_into().unwrap(); |
| 1695 | let s2: &mut SlimStrMut = &mut s2.as_mut().try_into().unwrap(); |
| 1696 | assert_str_mut_properties(s1, s2); |
| 1697 | } |
| 1698 | |
| 1699 | #[test] |
| 1700 | fn str_mut_exclusive_ref_various() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…