2017-11-24 16:47:40 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
fn main() {
|
2017-11-24 16:47:40 -06:00
|
|
|
let s = "abc";
|
|
|
|
let t = if true { s[..2] } else { s };
|
2017-11-25 08:19:39 -06:00
|
|
|
//~^ ERROR if and else have incompatible types
|
2017-11-24 16:47:40 -06:00
|
|
|
let u: &str = if true { s[..2] } else { s };
|
2017-11-25 08:19:39 -06:00
|
|
|
//~^ ERROR mismatched types
|
2017-11-24 16:47:40 -06:00
|
|
|
let v = s[..2];
|
2018-06-09 18:53:36 -05:00
|
|
|
//~^ ERROR `str` does not have a constant size known at compile-time
|
2017-11-24 16:47:40 -06:00
|
|
|
let w: &str = s[..2];
|
2017-11-25 08:19:39 -06:00
|
|
|
//~^ ERROR mismatched types
|
2017-11-24 16:47:40 -06:00
|
|
|
}
|