rust/tests/ui/save-analysis/issue-59134-0.rs
2023-01-11 09:32:08 +00:00

13 lines
264 B
Rust

// compile-flags: -Zsave-analysis
// Check that this doesn't ICE when processing associated const (field expr).
pub fn f() {
trait Trait {}
impl dyn Trait {
const FLAG: u32 = bogus.field; //~ ERROR cannot find value `bogus`
}
}
fn main() {}