blob: 2f248bf14c15138fc5b1360fce424f3ea4a747ff (
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() { }
|