]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/panic.stderr
4391a8c0017ffce72d4f435f918a053f01a0d311
[rust.git] / clippy_tests / examples / panic.stderr
1 error: you probably are missing some parameter in your format string
2  --> panic.rs:8:16
3   |
4 8 |         panic!("{}");
5   |                ^^^^
6   |
7   = note: `-D panic-params` implied by `-D warnings`
8
9 error: you probably are missing some parameter in your format string
10   --> panic.rs:10:16
11    |
12 10 |         panic!("{:?}");
13    |                ^^^^^^
14    |
15    = note: `-D panic-params` implied by `-D warnings`
16
17 error: you probably are missing some parameter in your format string
18   --> panic.rs:12:23
19    |
20 12 |         assert!(true, "here be missing values: {}");
21    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23    = note: `-D panic-params` implied by `-D warnings`
24
25 error: you probably are missing some parameter in your format string
26   --> panic.rs:22:5
27    |
28 22 |     assert!("foo bar".contains(&format!("foo {}", "bar")));
29    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30    |
31    = note: `-D panic-params` implied by `-D warnings`
32    = note: this error originates in a macro outside of the current crate
33
34 error: aborting due to previous error(s)
35
36 error: Could not compile `clippy_tests`.
37
38 To learn more, run the command again with --verbose.