]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/lint-non-camel-case-with-trailing-underscores.rs
Parallelize and optimize parts of HIR map creation
[rust.git] / src / test / run-pass / lint-non-camel-case-with-trailing-underscores.rs
1 #![allow(dead_code)]
2 // This is ok because we often use the trailing underscore to mean 'prime'
3
4 // pretty-expanded FIXME #23616
5
6 #[forbid(non_camel_case_types)]
7 type Foo_ = isize;
8
9 pub fn main() { }