mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
179 B
Rust
11 lines
179 B
Rust
|
#[warn(clippy::string_slice)]
|
||
|
#[allow(clippy::no_effect)]
|
||
|
|
||
|
fn main() {
|
||
|
&"Ölkanne"[1..];
|
||
|
let m = "Mötörhead";
|
||
|
&m[2..5];
|
||
|
let s = String::from(m);
|
||
|
&s[0..2];
|
||
|
}
|