]> git.proxmox.com Git - rustc.git/blame - src/test/ui/macros/macro-comma-behavior.std.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / macros / macro-comma-behavior.std.stderr
CommitLineData
b7449926 1error: 1 positional argument in format string, but no arguments were given
ba9703b0 2 --> $DIR/macro-comma-behavior.rs:20:23
b7449926
XL
3 |
4LL | assert_eq!(1, 1, "{}",);
5 | ^^
6
7error: 1 positional argument in format string, but no arguments were given
ba9703b0 8 --> $DIR/macro-comma-behavior.rs:23:23
b7449926
XL
9 |
10LL | assert_ne!(1, 2, "{}",);
11 | ^^
12
13error: 1 positional argument in format string, but no arguments were given
ba9703b0 14 --> $DIR/macro-comma-behavior.rs:29:29
b7449926
XL
15 |
16LL | debug_assert_eq!(1, 1, "{}",);
17 | ^^
18
19error: 1 positional argument in format string, but no arguments were given
ba9703b0 20 --> $DIR/macro-comma-behavior.rs:32:29
b7449926
XL
21 |
22LL | debug_assert_ne!(1, 2, "{}",);
23 | ^^
24
25error: 1 positional argument in format string, but no arguments were given
ba9703b0 26 --> $DIR/macro-comma-behavior.rs:37:18
b7449926
XL
27 |
28LL | eprint!("{}",);
29 | ^^
30
31error: 1 positional argument in format string, but no arguments were given
ba9703b0 32 --> $DIR/macro-comma-behavior.rs:49:18
b7449926
XL
33 |
34LL | format!("{}",);
35 | ^^
36
37error: 1 positional argument in format string, but no arguments were given
ba9703b0 38 --> $DIR/macro-comma-behavior.rs:53:19
b7449926
XL
39 |
40LL | format_args!("{}",);
41 | ^^
42
43error: 1 positional argument in format string, but no arguments were given
ba9703b0 44 --> $DIR/macro-comma-behavior.rs:60:17
b7449926
XL
45 |
46LL | print!("{}",);
47 | ^^
48
49error: 1 positional argument in format string, but no arguments were given
ba9703b0 50 --> $DIR/macro-comma-behavior.rs:71:21
b7449926
XL
51 |
52LL | unimplemented!("{}",);
53 | ^^
54
55error: 1 positional argument in format string, but no arguments were given
ba9703b0 56 --> $DIR/macro-comma-behavior.rs:80:24
b7449926
XL
57 |
58LL | write!(f, "{}",)?;
59 | ^^
60
61error: aborting due to 10 previous errors
62