]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/mismatched-types-numeric-from.rs
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[rust.git] / src / test / ui / suggestions / mismatched-types-numeric-from.rs
1 fn main() {
2     let _: u32 = i32::from(0_u8); //~ ERROR mismatched types
3 }