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