Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
lint
/
lint-non-camel-case-with-trailing-underscores.rs
blob: c2fdfb4fe421aad56096f0c1eeb90978a0caa4d9 [
file
] [
log
] [
blame
]
// compile-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
()
{
}