
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
184 B
Rust
10 lines
184 B
Rust
//@ check-pass
|
|
|
|
#![allow(dead_code)]
|
|
// This is ok because we often use the trailing underscore to mean 'prime'
|
|
|
|
|
|
#[forbid(non_camel_case_types)]
|
|
type Foo_ = isize;
|
|
|
|
pub fn main() { }
|