2014-06-23 17:12:17 -05:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-02-21 07:48:05 -06:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Regression test for issue #3645
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let n = 1;
|
2015-07-13 03:53:16 -05:00
|
|
|
let a = [0; n];
|
2016-07-19 16:02:56 -05:00
|
|
|
//~^ ERROR constant evaluation error
|
|
|
|
//~| non-constant path in constant expression
|
2014-12-19 20:20:51 -06:00
|
|
|
let b = [0; ()];
|
2015-07-13 03:53:16 -05:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `usize`
|
|
|
|
//~| found type `()`
|
|
|
|
//~| expected usize, found ()
|
2016-08-05 09:54:05 -05:00
|
|
|
//~| ERROR expected `usize` for repeat count, found tuple [E0306]
|
|
|
|
//~| expected `usize`
|
2015-01-12 00:01:44 -06:00
|
|
|
let c = [0; true];
|
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected usize, found bool
|
2016-08-05 09:54:05 -05:00
|
|
|
//~| ERROR expected `usize` for repeat count, found boolean [E0306]
|
|
|
|
//~| expected `usize`
|
2015-01-12 00:01:44 -06:00
|
|
|
let d = [0; 0.5];
|
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `usize`
|
2016-07-28 11:49:31 -05:00
|
|
|
//~| found type `{float}`
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected usize, found floating-point variable
|
2016-08-05 09:54:05 -05:00
|
|
|
//~| ERROR expected `usize` for repeat count, found float [E0306]
|
|
|
|
//~| expected `usize`
|
2015-01-12 00:01:44 -06:00
|
|
|
let e = [0; "foo"];
|
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `usize`
|
|
|
|
//~| found type `&'static str`
|
2016-08-11 23:47:56 -05:00
|
|
|
//~| expected usize, found reference
|
2016-08-05 09:54:05 -05:00
|
|
|
//~| ERROR expected `usize` for repeat count, found string literal [E0306]
|
|
|
|
//~| expected `usize`
|
2015-02-18 04:42:01 -06:00
|
|
|
let f = [0; -4_isize];
|
2016-07-19 16:02:56 -05:00
|
|
|
//~^ ERROR constant evaluation error
|
2016-07-22 15:52:53 -05:00
|
|
|
//~| expected usize, found isize
|
2016-07-19 16:02:56 -05:00
|
|
|
//~| ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected usize, found isize
|
2015-02-18 04:42:01 -06:00
|
|
|
let f = [0_usize; -1_isize];
|
2016-07-19 16:02:56 -05:00
|
|
|
//~^ ERROR constant evaluation error
|
2016-07-22 15:52:53 -05:00
|
|
|
//~| expected usize, found isize
|
2016-02-25 04:12:18 -06:00
|
|
|
//~| ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected usize, found isize
|
2015-07-13 03:53:16 -05:00
|
|
|
struct G {
|
|
|
|
g: (),
|
|
|
|
}
|
|
|
|
let g = [0; G { g: () }];
|
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `usize`
|
|
|
|
//~| found type `main::G`
|
|
|
|
//~| expected usize, found struct `main::G`
|
2016-08-05 09:54:05 -05:00
|
|
|
//~| ERROR expected `usize` for repeat count, found struct [E0306]
|
|
|
|
//~| expected `usize`
|
2013-02-21 07:48:05 -06:00
|
|
|
}
|