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