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