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

10 lines
355 B
Rust
Raw Normal View History

2021-05-07 10:41:04 +08:00
// run-rustfix
#![deny(deprecated)]
fn main() {
let _foo = str::trim_left(" aoeu"); //~ ERROR use of deprecated method `core::str::<impl str>::trim_left`: superseded by `trim_start` [deprecated]
2021-05-07 10:41:04 +08:00
let _bar = " aoeu".trim_left(); //~ ERROR use of deprecated method `core::str::<impl str>::trim_left`: superseded by `trim_start` [deprecated]
2021-05-07 10:41:04 +08:00
}