2023-02-28 01:55:19 -06: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 07:40:15 -06:00
|
|
|
error: unexpected closing delimiter: `}`
|
2019-01-27 23:04:50 -06:00
|
|
|
--> $DIR/macro-mismatched-delim-paren-brace.rs:5:1
|
|
|
|
|
|
2020-04-04 02:55:07 -05:00
|
|
|
LL | fn main() {
|
2023-01-25 21:02:19 -06:00
|
|
|
| - this delimiter might not be properly closed...
|
2020-04-04 02:55:07 -05:00
|
|
|
...
|
|
|
|
LL | }
|
2023-01-25 21:02:19 -06:00
|
|
|
| - ...as it matches this but it has different indentation
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | }
|
2020-01-03 07:40:15 -06:00
|
|
|
| ^ unexpected closing delimiter
|
2019-01-27 23:04:50 -06:00
|
|
|
|
2018-10-20 15:36:17 -05:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|