mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
14 lines
315 B
Rust
14 lines
315 B
Rust
// 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
|
|
extern crate stability_cfg2;
|
|
|
|
pub fn BOGUS() { } //~ ERROR
|
|
|
|
pub fn main() { }
|