]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/chain-method-call-mutation-in-place.rs
Rollup merge of #106751 - clubby789:const-intrinsic, r=GuillaumeGomez
[rust.git] / tests / ui / suggestions / chain-method-call-mutation-in-place.rs
1 fn main() {}
2 fn foo(mut s: String) -> String {
3     s.push_str("asdf") //~ ERROR mismatched types
4 }