rustc/tests/ui/associated-consts/associated-const-inherent-impl.rs
2024-06-21 09:39:33 +02:00

12 lines
106 B
Rust

//@ run-pass
struct Foo;
impl Foo {
const ID: i32 = 1;
}
fn main() {
assert_eq!(1, Foo::ID);
}