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