Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
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
()
{
}