mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
15 lines
300 B
Rust
15 lines
300 B
Rust
|
#![allow(clippy::redundant_clone)]
|
||
|
#![feature(custom_inner_attributes)]
|
||
|
#![clippy::msrv = "1.0"]
|
||
|
|
||
|
fn manual_strip_msrv() {
|
||
|
let s = "hello, world!";
|
||
|
if s.starts_with("hello, ") {
|
||
|
assert_eq!(s["hello, ".len()..].to_uppercase(), "WORLD!");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
manual_strip_msrv()
|
||
|
}
|