]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic.stderr
Merge pull request #1520 from Manishearth/rustup
[rust.git] / tests / ui / panic.stderr
1 error: you probably are missing some parameter in your format string
2  --> $DIR/panic.rs:8:16
3   |
4 8 |         panic!("{}");
5   |                ^^^^
6   |
7 note: lint level defined here
8  --> $DIR/panic.rs:4:9
9   |
10 4 | #![deny(panic_params)]
11   |         ^^^^^^^^^^^^
12
13 error: you probably are missing some parameter in your format string
14   --> $DIR/panic.rs:10:16
15    |
16 10 |         panic!("{:?}");
17    |                ^^^^^^
18
19 error: you probably are missing some parameter in your format string
20   --> $DIR/panic.rs:12:23
21    |
22 12 |         assert!(true, "here be missing values: {}");
23    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24
25 error: aborting due to 3 previous errors
26