mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
37 lines
747 B
Rust
37 lines
747 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::manual_main_separator_str)]
|
|
|
|
use std::path::MAIN_SEPARATOR;
|
|
|
|
fn len(s: &str) -> usize {
|
|
s.len()
|
|
}
|
|
|
|
struct U<'a> {
|
|
f: &'a str,
|
|
g: &'a String,
|
|
}
|
|
|
|
struct V<T> {
|
|
f: T,
|
|
}
|
|
|
|
fn main() {
|
|
// Should lint
|
|
let _: &str = std::path::MAIN_SEPARATOR_STR;
|
|
let _ = len(std::path::MAIN_SEPARATOR_STR);
|
|
let _: Vec<u16> = std::path::MAIN_SEPARATOR_STR.encode_utf16().collect();
|
|
|
|
// Should lint for field `f` only
|
|
let _ = U {
|
|
f: std::path::MAIN_SEPARATOR_STR,
|
|
g: &MAIN_SEPARATOR.to_string(),
|
|
};
|
|
|
|
// Should not lint
|
|
let _: &String = &MAIN_SEPARATOR.to_string();
|
|
let _ = &MAIN_SEPARATOR.to_string();
|
|
let _ = V {
|
|
f: &MAIN_SEPARATOR.to_string(),
|
|
};
|
|
}
|