]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed/malformed-meta-delim.stderr
Rollup merge of #89235 - yaahc:junit-formatting, r=kennytm
[rust.git] / src / test / ui / malformed / malformed-meta-delim.stderr
1 error: wrong meta list delimiters
2   --> $DIR/malformed-meta-delim.rs:3:9
3    |
4 LL | #[allow { foo_lint } ]
5    |         ^^^^^^^^^^^^
6    |
7 help: the delimiters should be `(` and `)`
8    |
9 LL | #[allow ( foo_lint ) ]
10    |         ~          ~
11
12 error: wrong meta list delimiters
13   --> $DIR/malformed-meta-delim.rs:8:9
14    |
15 LL | #[allow [ foo_lint ] ]
16    |         ^^^^^^^^^^^^
17    |
18 help: the delimiters should be `(` and `)`
19    |
20 LL | #[allow ( foo_lint ) ]
21    |         ~          ~
22
23 error: aborting due to 2 previous errors
24