rust/tests/ui/deprecation/issue-84637-deprecated-associated-function.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
494 B
Rust
Raw Normal View History

2021-05-07 02:41:04 +00:00
// run-rustfix
#![deny(deprecated)]
fn main() {
let _foo = str::trim_start(" aoeu"); //~ ERROR use of deprecated method `core::str::<impl str>::trim_left`: superseded by `trim_start` [deprecated]
2021-05-07 02:41:04 +00:00
let _bar = " aoeu".trim_start(); //~ ERROR use of deprecated method `core::str::<impl str>::trim_left`: superseded by `trim_start` [deprecated]
let _baz = ["a", "b"].join(" "); //~ ERROR use of deprecated method `std::slice::<impl [T]>::connect`: renamed to join [deprecated]
2021-05-07 02:41:04 +00:00
}