2023-02-28 07:55:19 +00:00
|
|
|
error: mismatched closing delimiter: `}`
|
|
|
|
--> $DIR/macro-mismatched-delim-paren-brace.rs:2:10
|
|
|
|
|
|
|
|
|
LL | foo! (
|
|
|
|
| ^ unclosed delimiter
|
|
|
|
LL | bar, "baz", 1, 2.0
|
|
|
|
LL | }
|
|
|
|
| ^ mismatched closing delimiter
|
|
|
|
|
2020-01-03 13:40:15 +00:00
|
|
|
error: unexpected closing delimiter: `}`
|
2019-01-28 05:04:50 +00:00
|
|
|
--> $DIR/macro-mismatched-delim-paren-brace.rs:5:1
|
|
|
|
|
|
2020-04-04 07:55:07 +00:00
|
|
|
LL | fn main() {
|
2023-01-26 03:02:19 +00:00
|
|
|
| - this delimiter might not be properly closed...
|
2020-04-04 07:55:07 +00:00
|
|
|
...
|
|
|
|
LL | }
|
2023-01-26 03:02:19 +00:00
|
|
|
| - ...as it matches this but it has different indentation
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | }
|
2020-01-03 13:40:15 +00:00
|
|
|
| ^ unexpected closing delimiter
|
2019-01-28 05:04:50 +00:00
|
|
|
|
2018-10-20 20:36:17 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|