mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 04:06:55 +01:00
20 lines
505 B
Rust
20 lines
505 B
Rust
|
fn main() {
|
||
|
let sixteen: f32 = 16;
|
||
|
//~^ ERROR mismatched types
|
||
|
//~| HELP use a float literal
|
||
|
let a_million_and_seventy: f64 = 1_000_070;
|
||
|
//~^ ERROR mismatched types
|
||
|
//~| HELP use a float literal
|
||
|
let negative_nine: f32 = -9;
|
||
|
//~^ ERROR mismatched types
|
||
|
//~| HELP use a float literal
|
||
|
|
||
|
|
||
|
// only base-10 literals get the suggestion
|
||
|
|
||
|
let sixteen_again: f64 = 0x10;
|
||
|
//~^ ERROR mismatched types
|
||
|
let and_once_more: f32 = 0o20;
|
||
|
//~^ ERROR mismatched types
|
||
|
}
|