2020-10-21 18:17:34 +05:30
|
|
|
#![allow(clippy::redundant_clone)]
|
|
|
|
#![feature(custom_inner_attributes)]
|
2020-11-28 19:54:28 +05:30
|
|
|
#![clippy::msrv = "1.0"]
|
2020-10-21 18:17:34 +05:30
|
|
|
|
|
|
|
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()
|
|
|
|
}
|