this code: ```rust fn foo(s: String) { s.capacity() } ``` triggers `needless_pass_by_value`, but I cannot turn this into `&str`, since there's no capacity method on it.