blob: 6e56c046f7ae27601488c8bd0a1bb4c0be9f8f6f [file] [log] [blame]
// `const`s shouldn't suggest `.into()`
const TEN: u8 = 10;
const TWELVE: u16 = TEN + 2;
//~^ ERROR mismatched types [E0308]
fn main() {
const TEN: u8 = 10;
const ALSO_TEN: u16 = TEN;
//~^ ERROR mismatched types [E0308]
}