//@ run-rustfix
#![allow(unused_parens)]
fn main() {
let _x: u8 = (4u8); //~ ERROR: mismatched types
let _y: u8 = (4u8); //~ ERROR: mismatched types
}