mirror of
https://github.com/rust-lang/rust.git
synced 2026-07-16 21:01:15 -04:00
24 lines
514 B
Plaintext
24 lines
514 B
Plaintext
error: attribute items not separated with `,`
|
|
--> $DIR/attr-missing-comma.rs:4:20
|
|
|
|
|
LL | since = "since"
|
|
| ^ help: try adding `,` here
|
|
|
|
error: attribute items not separated with `,`
|
|
--> $DIR/attr-missing-comma.rs:10:18
|
|
|
|
|
LL | name = "name"
|
|
| ^
|
|
|
|
|
help: try adding `,` here
|
|
|
|
|
LL | name = "name",
|
|
| +
|
|
help: try adding `,` here
|
|
|
|
|
LL | kind = "static",
|
|
| +
|
|
|
|
error: aborting due to 2 previous errors
|
|
|