mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 13:56:20 +00:00
16 lines
167 B
Rust
16 lines
167 B
Rust
// run-pass
|
|
|
|
#![deny(dead_code)]
|
|
|
|
const GLOBAL_BAR: u32 = 1;
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
const BAR: u32 = GLOBAL_BAR;
|
|
}
|
|
|
|
pub fn main() {
|
|
let _: u32 = Foo::BAR;
|
|
}
|