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-11-25 08:19:39 -06:00
|
|
|
fn main() { //~ NOTE expected `()` because of default return type
|
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
|
|
|
|
//~| NOTE expected str, found &str
|
|
|
|
//~| NOTE expected type
|
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
|
|
|
|
//~| NOTE expected &str, found str
|
|
|
|
//~| NOTE expected type
|
2017-11-24 16:47:40 -06:00
|
|
|
let v = s[..2];
|
2017-11-25 08:19:39 -06:00
|
|
|
//~^ ERROR the trait bound `str: std::marker::Sized` is not satisfied
|
2017-11-26 14:52:00 -06:00
|
|
|
//~| HELP consider borrowing here
|
2017-11-25 08:19:39 -06:00
|
|
|
//~| NOTE `str` does not have a constant size known at compile-time
|
|
|
|
//~| HELP the trait `std::marker::Sized` is not implemented for `str`
|
|
|
|
//~| NOTE all local variables must have a statically known size
|
2017-11-24 16:47:40 -06:00
|
|
|
let w: &str = s[..2];
|
2017-11-25 08:19:39 -06:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
//~| NOTE expected &str, found str
|
|
|
|
//~| NOTE expected type
|
|
|
|
//~| HELP try with `&s[..2]`
|
2017-11-24 16:47:40 -06:00
|
|
|
}
|