Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
attributes
/
no-mangle-on-const-error.rs
blob: 0366ce2e4b2319cf20db8a1cd5a6a86a0b662768 [
file
] [
edit
]
//! Regression test for https://github.com/rust-lang/rust/issues/45562
//@ run-rustfix
#![
deny
(
unused_attributes
)]
#[
no_mangle
]
pub
const
RAH
:
usize
=
5
;
//~^ ERROR const items should never be `#[no_mangle]`
fn
main
()
{}