mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
246 B
Rust
14 lines
246 B
Rust
fn main() {
|
|
let elem = 6i8;
|
|
let e2 = 230;
|
|
//~^ ERROR literal out of range for `i8`
|
|
//~| HELP consider using the type `u8` instead
|
|
|
|
let mut vec = Vec::new();
|
|
|
|
vec.push(e2);
|
|
vec.push(elem);
|
|
|
|
println!("{:?}", vec);
|
|
}
|