blob: 383c6868ce2fe1d01174b9a08a3a6d4d3966ee64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Test that enabling an unstable feature disables warnings
// aux-build:stability-cfg2.rs
#![feature(unstable_test_feature)]
#![deny(non_snake_case)] // To trigger a hard error
// Shouldn't generate a warning about unstable features
#[allow(unused_extern_crates)]
extern crate stability_cfg2;
pub fn BOGUS() { } //~ ERROR
pub fn main() { }
|