about summary refs log tree commit diff
path: root/tests/ui/attributes/z-crate-attr/garbage.stderr
blob: 12d18b0845fc0e80422ca11fb7566458597adcf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unknown start of token: `
  --> <crate attribute>:1:4
   |
LL | #![`%~@$#]
   |    ^
   |
help: Unicode character '`' (Grave Accent) looks like ''' (Single Quote), but it is not
   |
LL - #![`%~@$#]
LL + #!['%~@$#]
   |

error: expected identifier, found `%`
  --> <crate attribute>:1:5
   |
LL | #![`%~@$#]
   |     ^ expected identifier

error: aborting due to 2 previous errors