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