rust/tests/ui/suggestions/dont-suggest-doc-hidden-variant-for-enum/hidden-child.rs
2024-02-16 20:02:50 +00:00

11 lines
240 B
Rust

//@ aux-build:hidden-child.rs
// FIXME(compiler-errors): This currently suggests the wrong thing.
// UI test exists to track the problem.
extern crate hidden_child;
fn main() {
let x: Option<i32> = 1i32; //~ ERROR mismatched types
}