2020-12-20 10:19:49 -06:00
|
|
|
#![warn(clippy::panic_in_result_fn)]
|
2022-10-06 02:44:38 -05:00
|
|
|
#![allow(clippy::uninlined_format_args, clippy::unnecessary_wraps)]
|
2020-12-20 10:19:49 -06:00
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
// debug_assert should never trigger the `panic_in_result_fn` lint
|
|
|
|
|
2020-12-20 10:19:49 -06:00
|
|
|
struct A;
|
|
|
|
|
|
|
|
impl A {
|
2021-04-22 04:31:13 -05:00
|
|
|
fn result_with_debug_assert_with_message(x: i32) -> Result<bool, String> {
|
2020-12-20 10:19:49 -06:00
|
|
|
debug_assert!(x == 5, "wrong argument");
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
fn result_with_debug_assert_eq(x: i32) -> Result<bool, String> {
|
2020-12-20 10:19:49 -06:00
|
|
|
debug_assert_eq!(x, 5);
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
fn result_with_debug_assert_ne(x: i32) -> Result<bool, String> {
|
2020-12-20 10:19:49 -06:00
|
|
|
debug_assert_ne!(x, 1);
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
fn other_with_debug_assert_with_message(x: i32) {
|
2020-12-20 10:19:49 -06:00
|
|
|
debug_assert!(x == 5, "wrong argument");
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
fn other_with_debug_assert_eq(x: i32) {
|
2020-12-20 10:19:49 -06:00
|
|
|
debug_assert_eq!(x, 5);
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
fn other_with_debug_assert_ne(x: i32) {
|
2020-12-20 10:19:49 -06:00
|
|
|
debug_assert_ne!(x, 1);
|
|
|
|
}
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
fn result_without_banned_functions() -> Result<bool, String> {
|
2020-12-20 10:19:49 -06:00
|
|
|
let debug_assert = "debug_assert!";
|
|
|
|
println!("No {}", debug_assert);
|
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|