2019-12-21 13:16:18 +02:00
|
|
|
// Check that an issue value can be explicitly set to "0" instead of "none"
|
2019-11-11 19:33:30 +02:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(staged_api)]
|
|
|
|
#![stable(feature = "stable_test_feature", since = "1.0.0")]
|
|
|
|
|
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "0")]
|
2020-02-06 16:19:39 +09:00
|
|
|
fn unstable_issue_0() {} //~^ ERROR `issue` must be a non-zero numeric string or "none"
|
2019-11-11 19:33:30 +02:00
|
|
|
|
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "none")]
|
|
|
|
fn unstable_issue_none() {}
|
|
|
|
|
2020-01-22 10:33:46 -05:00
|
|
|
#[unstable(feature = "unstable_test_feature", issue = "something")]
|
2020-02-06 16:19:39 +09:00
|
|
|
fn unstable_issue_not_allowed() {} //~^ ERROR `issue` must be a non-zero numeric string or "none"
|