Files
rust/tests/ui/suggestions/dont-suggest-doc-hidden-variant-for-enum/hidden-child.rs

11 lines
240 B
Rust
Raw Normal View History

//@ aux-build:hidden-child.rs
2021-12-22 02:03:51 +04:00
// 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
}