2017-04-07 09:21:39 +00:00
|
|
|
error: you probably are missing some parameter in your format string
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/panic.rs:8:16
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
|
8 | panic!("{}");
|
|
|
|
| ^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D panic-params` implied by `-D warnings`
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
error: you probably are missing some parameter in your format string
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/panic.rs:10:16
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
|
10 | panic!("{:?}");
|
|
|
|
| ^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D panic-params` implied by `-D warnings`
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
error: you probably are missing some parameter in your format string
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/panic.rs:12:23
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
|
12 | assert!(true, "here be missing values: {}");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D panic-params` implied by `-D warnings`
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
error: you probably are missing some parameter in your format string
|
2017-05-17 12:19:44 +00:00
|
|
|
--> examples/panic.rs:22:5
|
2017-04-07 09:21:39 +00:00
|
|
|
|
|
|
|
|
22 | assert!("foo bar".contains(&format!("foo {}", "bar")));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D panic-params` implied by `-D warnings`
|
2017-04-07 09:21:39 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|