2015-02-02 22:25:42 -06:00
|
|
|
// Testing that the stable_features lint catches use of stable
|
|
|
|
// language and lib features.
|
|
|
|
|
|
|
|
#![deny(stable_features)]
|
2017-08-31 17:08:34 -05:00
|
|
|
|
2018-07-23 06:22:23 -05:00
|
|
|
#![feature(test_accepted_feature)]
|
|
|
|
//~^ ERROR the feature `test_accepted_feature` has been stable since 1.0.0
|
2017-08-31 17:08:34 -05:00
|
|
|
|
|
|
|
#![feature(rust1)]
|
2018-07-23 06:22:23 -05:00
|
|
|
//~^ ERROR the feature `rust1` has been stable since 1.0.0
|
2015-02-02 22:25:42 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _foo: Vec<()> = Vec::new();
|
|
|
|
}
|