blob: 4b8fd778685e0f98a532ce68ab6b2cc0c14d0c34 [file] [log] [blame]
#![warn(clippy::from_str_radix_10)]
mod some_mod {
// fake function that shouldn't trigger the lint
pub fn from_str_radix(_: &str, _: u32) -> Result<(), std::num::ParseIntError> {
unimplemented!()
}
}
// fake function that shouldn't trigger the lint
fn from_str_radix(_: &str, _: u32) -> Result<(), std::num::ParseIntError> {
unimplemented!()
}
// to test parenthesis addition
struct Test;
impl std::ops::Add<Test> for Test {
type Output = &'static str;
fn add(self, _: Self) -> Self::Output {
"304"
}
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
// all of these should trigger the lint
"30".parse::<u32>()?;
//~^ from_str_radix_10
"24".parse::<i64>()?;
//~^ from_str_radix_10
"100".parse::<isize>()?;
//~^ from_str_radix_10
"7".parse::<u8>()?;
//~^ from_str_radix_10
("10".to_owned() + "5").parse::<u16>()?;
//~^ from_str_radix_10
(Test + Test).parse::<i128>()?;
//~^ from_str_radix_10
let string = "300";
string.parse::<i32>()?;
//~^ from_str_radix_10
let stringier = "400".to_string();
stringier.parse::<i32>()?;
//~^ from_str_radix_10
// none of these should trigger the lint
u16::from_str_radix("20", 3)?;
i32::from_str_radix("45", 12)?;
usize::from_str_radix("10", 16)?;
i128::from_str_radix("10", 13)?;
some_mod::from_str_radix("50", 10)?;
some_mod::from_str_radix("50", 6)?;
from_str_radix("50", 10)?;
from_str_radix("50", 6)?;
Ok(())
}
// https://github.com/rust-lang/rust-clippy/issues/12731
fn issue_12731() {
const A: Result<u32, std::num::ParseIntError> = u32::from_str_radix("123", 10);
const B: () = {
let _ = u32::from_str_radix("123", 10);
};
const fn foo() {
let _ = u32::from_str_radix("123", 10);
}
}