2015-01-22 19:28:26 -06:00
|
|
|
// Test that enabling an unstable feature disables warnings
|
|
|
|
|
2019-03-11 19:49:17 -05:00
|
|
|
// aux-build:stability-cfg2.rs
|
2015-01-22 19:28:26 -06:00
|
|
|
|
2018-07-23 06:22:23 -05:00
|
|
|
#![feature(unstable_test_feature)]
|
2015-01-22 19:28:26 -06:00
|
|
|
#![deny(non_snake_case)] // To trigger a hard error
|
|
|
|
|
|
|
|
// Shouldn't generate a warning about unstable features
|
|
|
|
extern crate stability_cfg2;
|
|
|
|
|
|
|
|
pub fn BOGUS() { } //~ ERROR
|
|
|
|
|
|
|
|
pub fn main() { }
|