rust/tests/ui/suggestions/dont-suggest-doc-hidden-variant-for-enum/hidden-child.rs
2023-01-11 09:32:08 +00:00

11 lines
239 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
}