Reintroduce #768 so we can publish

This commit is contained in:
Oliver Schneider 2017-04-07 11:21:39 +02:00
parent 3052000c73
commit f1e905f620
2 changed files with 35 additions and 1 deletions

View File

@ -42,7 +42,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
let ExprPath(ref qpath) = fun.node,
match_def_path(cx.tcx, resolve_node(cx, qpath, fun.id).def_id(), &paths::BEGIN_PANIC),
let ExprLit(ref lit) = params[0].node,
is_direct_expn_of(params[0].span, "panic").is_some(),
is_direct_expn_of(expr.span, "panic").is_some(),
let LitKind::Str(ref string, _) = lit.node,
let Some(par) = string.as_str().find('{'),
string.as_str()[par..].contains('}')

View File

@ -0,0 +1,34 @@
error: you probably are missing some parameter in your format string
--> $DIR/panic.rs:8:16
|
8 | panic!("{}");
| ^^^^
|
note: lint level defined here
--> $DIR/panic.rs:4:9
|
4 | #![deny(panic_params)]
| ^^^^^^^^^^^^
error: you probably are missing some parameter in your format string
--> $DIR/panic.rs:10:16
|
10 | panic!("{:?}");
| ^^^^^^
error: you probably are missing some parameter in your format string
--> $DIR/panic.rs:12:23
|
12 | assert!(true, "here be missing values: {}");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: you probably are missing some parameter in your format string
--> $DIR/panic.rs:22:5
|
22 | assert!("foo bar".contains(&format!("foo {}", "bar")));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in a macro outside of the current crate
error: aborting due to 4 previous errors