mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
373 B
Rust
14 lines
373 B
Rust
// Check what happens when we forbid a smaller group but
|
|
// then allow a superset of that group.
|
|
|
|
#![forbid(nonstandard_style)]
|
|
|
|
// FIXME: Arguably this should be an error, but the WARNINGS group is
|
|
// treated in a very special (and rather ad-hoc) way and
|
|
// it fails to trigger.
|
|
#[allow(warnings)]
|
|
fn main() {
|
|
let A: ();
|
|
//~^ ERROR should have a snake case name
|
|
}
|