```rust struct Foo; impl Foo { const BAR: i32 = 42; } fn main() { let x = Foo::BAR; } ``` `Foo::BAR` does not get resolved.