]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/unstable-attribute-allow-issue-0.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / feature-gates / unstable-attribute-allow-issue-0.stderr
CommitLineData
74b04a01
XL
1error[E0545]: `issue` must be a non-zero numeric string or "none"
2 --> $DIR/unstable-attribute-allow-issue-0.rs:6:47
3 |
4LL | #[unstable(feature = "unstable_test_feature", issue = "0")]
5 | ^^^^^^^^---
6 | |
7 | `issue` must not be "0", use "none" instead
8
9error[E0545]: `issue` must be a non-zero numeric string or "none"
10 --> $DIR/unstable-attribute-allow-issue-0.rs:12:47
60c5eb7d
XL
11 |
12LL | #[unstable(feature = "unstable_test_feature", issue = "something")]
74b04a01
XL
13 | ^^^^^^^^-----------
14 | |
15 | invalid digit found in string
60c5eb7d 16
74b04a01 17error: aborting due to 2 previous errors
60c5eb7d 18
6a06907d 19For more information about this error, try `rustc --explain E0545`.