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

13 lines
266 B
Rust

// compile-flags: -Zsave-analysis
// Check that this doesn't ICE when processing associated const (type).
fn func() {
trait Trait {
type MyType;
const CONST: Self::MyType = bogus.field; //~ ERROR cannot find value `bogus`
}
}
fn main() {}