mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 14:11:27 +00:00
12 lines
105 B
Rust
12 lines
105 B
Rust
// run-pass
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
const ID: i32 = 1;
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(1, Foo::ID);
|
|
}
|