mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
106 B
Rust
12 lines
106 B
Rust
//@ run-pass
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
const ID: i32 = 1;
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(1, Foo::ID);
|
|
}
|