()
| 1726 | |
| 1727 | #[test] |
| 1728 | fn str_try_into() { |
| 1729 | let [s1, s2] = test_strings(); |
| 1730 | let s1: &SlimStr = &mut s1.deref().try_into().unwrap(); |
| 1731 | let s2: &SlimStr = &mut s2.deref().try_into().unwrap(); |
| 1732 | assert_str_properties(s1, s2); |
| 1733 | } |
| 1734 | |
| 1735 | #[test] |
| 1736 | fn str_shared_ref_various() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…