blob: c6d956dffe1ef23856a6e9f0875a9c683816b1e3 [file] [log] [blame]
// run-pass
struct Foo;
impl Foo {
const ID: i32 = 1;
}
fn main() {
assert_eq!(1, Foo::ID);
}