Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
lint
/
command-line-lint-group-warn.rs
blob: 9807e95dd805381c3f9ccbb628bf3a3ef56a5396 [
file
] [
log
] [
blame
]
//@ compile-flags: -W bad-style
//@ check-pass
fn
main
()
{
let
_InappropriateCamelCasing
=
true
;
//~^ WARNING should have a snake case name
}