]> git.proxmox.com Git - rustc.git/blame - src/test/ui/macros/macro-comma-behavior.core.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / macros / macro-comma-behavior.core.stderr
CommitLineData
b7449926 1error: 1 positional argument in format string, but no arguments were given
1b1a35ee 2 --> $DIR/macro-comma-behavior.rs:21:23
b7449926
XL
3 |
4LL | assert_eq!(1, 1, "{}",);
5 | ^^
6
7error: 1 positional argument in format string, but no arguments were given
1b1a35ee 8 --> $DIR/macro-comma-behavior.rs:24:23
b7449926
XL
9 |
10LL | assert_ne!(1, 2, "{}",);
11 | ^^
12
13error: 1 positional argument in format string, but no arguments were given
1b1a35ee 14 --> $DIR/macro-comma-behavior.rs:30:29
b7449926
XL
15 |
16LL | debug_assert_eq!(1, 1, "{}",);
17 | ^^
18
19error: 1 positional argument in format string, but no arguments were given
1b1a35ee 20 --> $DIR/macro-comma-behavior.rs:33:29
b7449926
XL
21 |
22LL | debug_assert_ne!(1, 2, "{}",);
23 | ^^
24
25error: 1 positional argument in format string, but no arguments were given
1b1a35ee 26 --> $DIR/macro-comma-behavior.rs:54:19
b7449926
XL
27 |
28LL | format_args!("{}",);
29 | ^^
30
31error: 1 positional argument in format string, but no arguments were given
1b1a35ee 32 --> $DIR/macro-comma-behavior.rs:72:21
b7449926
XL
33 |
34LL | unimplemented!("{}",);
35 | ^^
36
37error: 1 positional argument in format string, but no arguments were given
1b1a35ee 38 --> $DIR/macro-comma-behavior.rs:81:24
b7449926
XL
39 |
40LL | write!(f, "{}",)?;
41 | ^^
42
43error: aborting due to 7 previous errors
44