rust/src/test/ui/str/str-array-assignment.rs

12 lines
311 B
Rust
Raw Normal View History

fn main() {
let s = "abc";
let t = if true { s[..2] } else { s };
//~^ ERROR if and else have incompatible types
let u: &str = if true { s[..2] } else { s };
//~^ ERROR mismatched types
let v = s[..2];
2018-07-10 16:10:13 -05:00
//~^ ERROR the size for values of type
let w: &str = s[..2];
//~^ ERROR mismatched types
}