rust/src/test/ui/range/range-1.rs
2018-12-25 21:08:33 -07:00

16 lines
382 B
Rust

// Test range syntax - type errors.
pub fn main() {
// Mixed types.
let _ = 0u32..10i32;
//~^ ERROR mismatched types
// Bool => does not implement iterator.
for i in false..true {}
//~^ ERROR `bool: std::iter::Step` is not satisfied
// Unsized type.
let arr: &[_] = &[1, 2, 3];
let range = *arr..;
//~^ ERROR the size for values of type
}