mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
215 B
Rust
12 lines
215 B
Rust
// check-pass
|
|
|
|
#![allow(dead_code)]
|
|
// This is ok because we often use the trailing underscore to mean 'prime'
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
#[forbid(non_camel_case_types)]
|
|
type Foo_ = isize;
|
|
|
|
pub fn main() { }
|