]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-comma-behavior.core.stderr
Auto merge of #106976 - tmiasko:borrowck-lazy-dominators, r=cjgillot
[rust.git] / tests / ui / macros / macro-comma-behavior.core.stderr
1 error: 1 positional argument in format string, but no arguments were given
2   --> $DIR/macro-comma-behavior.rs:21:23
3    |
4 LL |     assert_eq!(1, 1, "{}",);
5    |                       ^^
6
7 error: 1 positional argument in format string, but no arguments were given
8   --> $DIR/macro-comma-behavior.rs:24:23
9    |
10 LL |     assert_ne!(1, 2, "{}",);
11    |                       ^^
12
13 error: 1 positional argument in format string, but no arguments were given
14   --> $DIR/macro-comma-behavior.rs:30:29
15    |
16 LL |     debug_assert_eq!(1, 1, "{}",);
17    |                             ^^
18
19 error: 1 positional argument in format string, but no arguments were given
20   --> $DIR/macro-comma-behavior.rs:33:29
21    |
22 LL |     debug_assert_ne!(1, 2, "{}",);
23    |                             ^^
24
25 error: 1 positional argument in format string, but no arguments were given
26   --> $DIR/macro-comma-behavior.rs:52:19
27    |
28 LL |     format_args!("{}",);
29    |                   ^^
30
31 error: 1 positional argument in format string, but no arguments were given
32   --> $DIR/macro-comma-behavior.rs:68:21
33    |
34 LL |     unimplemented!("{}",);
35    |                     ^^
36
37 error: 1 positional argument in format string, but no arguments were given
38   --> $DIR/macro-comma-behavior.rs:77:24
39    |
40 LL |             write!(f, "{}",)?;
41    |                        ^^
42
43 error: 1 positional argument in format string, but no arguments were given
44   --> $DIR/macro-comma-behavior.rs:81:26
45    |
46 LL |             writeln!(f, "{}",)?;
47    |                          ^^
48
49 error: aborting due to 8 previous errors
50