Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
lint
/
lint-non-camel-case-with-trailing-underscores.rs
blob: d025ee948546a54639ab8719fbfde44cfed9292a [
file
] [
log
] [
blame
]
// build-pass (FIXME(62277): could be 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
()
{
}