2020-01-22 18:00:00 -06:00
|
|
|
// check-pass
|
2019-01-04 14:59:07 -06:00
|
|
|
|
2018-09-14 05:20:28 -05:00
|
|
|
#![allow(dead_code)]
|
2012-08-08 17:05:49 -05:00
|
|
|
// This is ok because we often use the trailing underscore to mean 'prime'
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2012-08-08 17:05:49 -05:00
|
|
|
#[forbid(non_camel_case_types)]
|
2015-03-25 19:06:52 -05:00
|
|
|
type Foo_ = isize;
|
2012-08-08 17:05:49 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() { }
|