rust/tests/ui/parser/inner-attr-in-trait-def.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
115 B
Rust
Raw Normal View History

// check-pass
#![deny(non_camel_case_types)]
fn main() {}
trait foo_bar {
#![allow(non_camel_case_types)]
}