Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
non-snake-case
/
lint-non-snake-case-modules.rs
blob: 73f1233217225980422207fe92cbb19fd3a9f556 [
file
] [
log
] [
blame
] [
edit
]
#![
deny
(
non_snake_case
)]
#![
allow
(
dead_code
)]
mod
FooBar
{
//~ ERROR module `FooBar` should have a snake case name
pub
struct
S
;
}
fn
f
(
_
:
FooBar
::
S
)
{
}
fn
main
()
{
}