Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
issue-110573.rs
blob: d6c1b9b296db4fdb2ca02c7cb37dd3e3ec076d99 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
deny
(
warnings
)]
pub
struct
Struct
;
impl
Struct
{
#[
allow
(
non_upper_case_globals
)]
pub
const
Const
:
()
=
();
}
fn
main
()
{}