Check if the panic message was created by the assert-macro

This commit is contained in:
flip1995 2018-03-17 20:35:20 +01:00
parent 6f3f25878f
commit 4fdc81dd7a

View file

@ -48,6 +48,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
if let Some(par) = string.as_str().find('{'); if let Some(par) = string.as_str().find('{');
if string.as_str()[par..].contains('}'); if string.as_str()[par..].contains('}');
if params[0].span.source_callee().is_none(); if params[0].span.source_callee().is_none();
if params[0].span.lo() != params[0].span.hi();
then { then {
span_lint(cx, PANIC_PARAMS, params[0].span, span_lint(cx, PANIC_PARAMS, params[0].span,
"you probably are missing some parameter in your format string"); "you probably are missing some parameter in your format string");