rust/tests/ui/macros/macro-comma-behavior.core.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error: 1 positional argument in format string, but no arguments were given
--> $DIR/macro-comma-behavior.rs:21:23
2018-08-08 12:28:26 +00:00
|
LL | assert_eq!(1, 1, "{}",);
| ^^
error: 1 positional argument in format string, but no arguments were given
--> $DIR/macro-comma-behavior.rs:24:23
2018-08-08 12:28:26 +00:00
|
LL | assert_ne!(1, 2, "{}",);
| ^^
error: 1 positional argument in format string, but no arguments were given
--> $DIR/macro-comma-behavior.rs:30:29
2018-08-08 12:28:26 +00:00
|
LL | debug_assert_eq!(1, 1, "{}",);
| ^^
error: 1 positional argument in format string, but no arguments were given
--> $DIR/macro-comma-behavior.rs:33:29
2018-08-08 12:28:26 +00:00
|
LL | debug_assert_ne!(1, 2, "{}",);
| ^^
error: 1 positional argument in format string, but no arguments were given
2020-12-28 17:15:16 +00:00
--> $DIR/macro-comma-behavior.rs:52:19
2018-08-08 12:28:26 +00:00
|
LL | format_args!("{}",);
| ^^
error: 1 positional argument in format string, but no arguments were given
2020-12-28 17:15:16 +00:00
--> $DIR/macro-comma-behavior.rs:68:21
2018-08-08 12:28:26 +00:00
|
LL | unimplemented!("{}",);
| ^^
error: 1 positional argument in format string, but no arguments were given
2020-12-28 17:15:16 +00:00
--> $DIR/macro-comma-behavior.rs:77:24
2018-08-08 12:28:26 +00:00
|
LL | write!(f, "{}",)?;
| ^^
2020-12-28 17:15:16 +00:00
error: 1 positional argument in format string, but no arguments were given
--> $DIR/macro-comma-behavior.rs:81:26
|
LL | writeln!(f, "{}",)?;
| ^^
error: aborting due to 8 previous errors