]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-comma-behavior.std.stderr
Merge commit '928e72dd10749875cbd412f74bfbfd7765dbcd8a' into clippyup
[rust.git] / src / test / ui / macros / macro-comma-behavior.std.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:38:18
27    |
28 LL |         eprint!("{}",);
29    |                  ^^
30
31 error: 1 positional argument in format string, but no arguments were given
32   --> $DIR/macro-comma-behavior.rs:43:20
33    |
34 LL |         eprintln!("{}",);
35    |                    ^^
36
37 error: 1 positional argument in format string, but no arguments were given
38   --> $DIR/macro-comma-behavior.rs:48:18
39    |
40 LL |         format!("{}",);
41    |                  ^^
42
43 error: 1 positional argument in format string, but no arguments were given
44   --> $DIR/macro-comma-behavior.rs:52:19
45    |
46 LL |     format_args!("{}",);
47    |                   ^^
48
49 error: 1 positional argument in format string, but no arguments were given
50   --> $DIR/macro-comma-behavior.rs:59:17
51    |
52 LL |         print!("{}",);
53    |                 ^^
54
55 error: 1 positional argument in format string, but no arguments were given
56   --> $DIR/macro-comma-behavior.rs:64:19
57    |
58 LL |         println!("{}",);
59    |                   ^^
60
61 error: 1 positional argument in format string, but no arguments were given
62   --> $DIR/macro-comma-behavior.rs:68:21
63    |
64 LL |     unimplemented!("{}",);
65    |                     ^^
66
67 error: 1 positional argument in format string, but no arguments were given
68   --> $DIR/macro-comma-behavior.rs:77:24
69    |
70 LL |             write!(f, "{}",)?;
71    |                        ^^
72
73 error: 1 positional argument in format string, but no arguments were given
74   --> $DIR/macro-comma-behavior.rs:81:26
75    |
76 LL |             writeln!(f, "{}",)?;
77    |                          ^^
78
79 error: aborting due to 13 previous errors
80