rust-clippy/tests/ui/panic_unimplemented.rs

69 lines
1.2 KiB
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::panic_params, clippy::unimplemented)]
#![allow(clippy::assertions_on_constants)]
2015-12-23 21:37:52 +00:00
fn missing() {
if true {
2017-02-08 13:58:07 +00:00
panic!("{}");
} else if false {
2017-02-08 13:58:07 +00:00
panic!("{:?}");
} else {
2017-02-08 13:58:07 +00:00
assert!(true, "here be missing values: {}");
}
panic!("{{{this}}}");
2015-12-23 21:37:52 +00:00
}
fn ok_single() {
2015-12-23 21:37:52 +00:00
panic!("foo bar");
}
fn ok_inner() {
// Test for #768
assert!("foo bar".contains(&format!("foo {}", "bar")));
}
2015-12-23 21:37:52 +00:00
fn ok_multiple() {
panic!("{}", "This is {ok}");
}
fn ok_bracket() {
match 42 {
1337 => panic!("{so is this"),
666 => panic!("so is this}"),
_ => panic!("}so is that{"),
}
}
2018-12-09 22:26:16 +00:00
const ONE: u32 = 1;
fn ok_nomsg() {
assert!({ 1 == ONE });
assert!(if 1 == ONE { ONE == 1 } else { false });
}
fn ok_escaped() {
panic!("{{ why should this not be ok? }}");
panic!(" or {{ that ?");
panic!(" or }} this ?");
panic!(" {or {{ that ?");
panic!(" }or }} this ?");
panic!("{{ test }");
panic!("{case }}");
}
2018-05-23 14:43:05 +00:00
fn unimplemented() {
let a = 2;
2018-05-23 14:43:05 +00:00
unimplemented!();
let b = a + 2;
2018-05-23 14:43:05 +00:00
}
2015-12-23 21:37:52 +00:00
fn main() {
missing();
ok_single();
2015-12-23 21:37:52 +00:00
ok_multiple();
ok_bracket();
ok_inner();
ok_nomsg();
ok_escaped();
2018-05-23 14:43:05 +00:00
unimplemented();
2015-12-23 21:37:52 +00:00
}