2017-12-10 23:29:24 +03:00
|
|
|
fn main() {
|
2017-11-24 14:47:40 -08: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 14:47:40 -08:00
|
|
|
let u: &str = if true { s[..2] } else { s };
|
2017-11-25 06:19:39 -08:00
|
|
|
//~^ ERROR mismatched types
|
2017-11-24 14:47:40 -08:00
|
|
|
let v = s[..2];
|
2018-07-10 23:10:13 +02:00
|
|
|
//~^ ERROR the size for values of type
|
2017-11-24 14:47:40 -08:00
|
|
|
let w: &str = s[..2];
|
2017-11-25 06:19:39 -08:00
|
|
|
//~^ ERROR mismatched types
|
2017-11-24 14:47:40 -08:00
|
|
|
}
|