]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/mismatched-types-numeric-from.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / mismatched-types-numeric-from.rs
1 fn main() {
2     let _: u32 = i32::from(0_u8); //~ ERROR mismatched types
3 }