rust/src/test/compile-fail/lint-non-camel-case-struct.rs

8 lines
129 B
Rust
Raw Normal View History

#[forbid(non_camel_case_types)]
struct foo { //~ ERROR type, variant, or trait must be camel case
bar: int;
}
fn main() {
}