2017-12-10 20:29:24 +00:00
|
|
|
fn main() {
|
2017-11-24 22:47:40 +00:00
|
|
|
let s = "abc";
|
|
|
|
let t = if true { s[..2] } else { s };
|
2020-01-05 00:17:46 +00:00
|
|
|
//~^ ERROR `if` and `else` have incompatible types
|
2017-11-24 22:47:40 +00:00
|
|
|
let u: &str = if true { s[..2] } else { s };
|
2017-11-25 14:19:39 +00:00
|
|
|
//~^ ERROR mismatched types
|
2017-11-24 22:47:40 +00:00
|
|
|
let v = s[..2];
|
2018-07-10 21:10:13 +00:00
|
|
|
//~^ ERROR the size for values of type
|
2017-11-24 22:47:40 +00:00
|
|
|
let w: &str = s[..2];
|
2017-11-25 14:19:39 +00:00
|
|
|
//~^ ERROR mismatched types
|
2017-11-24 22:47:40 +00:00
|
|
|
}
|