Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
issue-17718-const-naming.rs
blob: d7f0e72769b0560e946dca5f98b96802d4d3099d [
file
] [
log
] [
blame
] [
edit
]
#![
warn
(
unused
)]
#![
deny
(
warnings
)]
const
foo
:
isize
=
3
;
//~^ ERROR: should have an upper case name
//~^^ ERROR: constant `foo` is never used
fn
main
()
{}