7 lines
140 B
Rust
7 lines
140 B
Rust
// This is ok because we often use the trailing underscore to mean 'prime'
|
|
|
|
#[forbid(non_camel_case_types)]
|
|
type Foo_ = int;
|
|
|
|
fn main() { }
|