1cdc81bdc1
- Pass it explicitly where appropriate - Update stderr files and warnings; it turns that unstable-options has far-reaching effects on diagnostics.
10 lines
200 B
Rust
10 lines
200 B
Rust
// compile-flags: --force-warns nonstandard_style -Zunstable-options
|
|
// check-pass
|
|
|
|
#![allow(warnings)]
|
|
|
|
pub fn FUNCTION() {}
|
|
//~^ WARN function `FUNCTION` should have a snake case name
|
|
|
|
fn main() {}
|