mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-21 04:30:37 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
fn main() {
|
|
let _p: char = 100;
|
|
//~^ ERROR mismatched types
|
|
//~| NOTE expected `char`, found `u8`
|
|
//~| NOTE expected due to this
|
|
}
|