]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic.stderr
Merge pull request #1861 from CBenoit/master
[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: `-D panic-params` implied by `-D warnings`
8
9 error: you probably are missing some parameter in your format string
10   --> $DIR/panic.rs:10:16
11    |
12 10 |         panic!("{:?}");
13    |                ^^^^^^
14
15 error: you probably are missing some parameter in your format string
16   --> $DIR/panic.rs:12:23
17    |
18 12 |         assert!(true, "here be missing values: {}");
19    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20
21 error: aborting due to 3 previous errors
22