2015-01-22 17:28:26 -08:00
|
|
|
// Test that enabling an unstable feature disables warnings
|
|
|
|
|
2019-03-12 00:49:17 +00:00
|
|
|
//@ aux-build:stability-cfg2.rs
|
2015-01-22 17:28:26 -08:00
|
|
|
|
2018-07-23 12:22:23 +01:00
|
|
|
#![feature(unstable_test_feature)]
|
2015-01-22 17:28:26 -08: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() { }
|