summary refs log tree commit diff
path: root/src/test/ui/malformed/malformed-meta-delim.stderr
blob: 407193d4adebbd8784daf89623206769a145e5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
error: wrong meta list delimiters
  --> $DIR/malformed-meta-delim.rs:3:9
   |
LL | #[allow { foo_lint } ]
   |         ^^^^^^^^^^^^
   |
help: the delimiters should be `(` and `)`
   |
LL | #[allow ( foo_lint ) ]
   |         ^          ^

error: wrong meta list delimiters
  --> $DIR/malformed-meta-delim.rs:8:9
   |
LL | #[allow [ foo_lint ] ]
   |         ^^^^^^^^^^^^
   |
help: the delimiters should be `(` and `)`
   |
LL | #[allow ( foo_lint ) ]
   |         ^          ^

error: aborting due to 2 previous errors