2014-09-27 14:22:32 -05:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
|
|
|
fn main() {
|
2015-02-18 04:42:01 -06:00
|
|
|
let _foo = &[1_usize, 2] as [usize];
|
2014-12-05 20:12:25 -06:00
|
|
|
//~^ ERROR cast to unsized type: `&[usize; 2]` as `[usize]`
|
|
|
|
//~^^ HELP consider using an implicit coercion to `&[usize]` instead
|
2015-02-15 02:52:21 -06:00
|
|
|
|
|
|
|
// FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
|
|
|
|
let _bar = Box::new(1_usize) as std::fmt::Debug;
|
2016-03-20 06:24:08 -05:00
|
|
|
//~^ ERROR cast to unsized type: `Box<usize>` as `std::fmt::Debug`
|
2015-04-21 04:13:42 -05:00
|
|
|
//~^^ HELP try casting to a `Box` instead
|
2015-02-15 02:52:21 -06:00
|
|
|
|
2015-02-21 05:28:28 -06:00
|
|
|
let _baz = 1_usize as std::fmt::Debug;
|
2016-03-20 06:24:08 -05:00
|
|
|
//~^ ERROR cast to unsized type: `usize` as `std::fmt::Debug`
|
2014-10-17 21:39:44 -05:00
|
|
|
//~^^ HELP consider using a box or reference as appropriate
|
2015-02-15 02:52:21 -06:00
|
|
|
|
2015-02-18 04:42:01 -06:00
|
|
|
let _quux = [1_usize, 2] as [usize];
|
2014-12-05 20:12:25 -06:00
|
|
|
//~^ ERROR cast to unsized type: `[usize; 2]` as `[usize]`
|
2014-10-17 21:39:44 -05:00
|
|
|
//~^^ HELP consider using a box or reference as appropriate
|
2014-09-27 14:22:32 -05:00
|
|
|
}
|