]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/repeat_count.rs
Imported Upstream version 1.0.0~0alpha
[rustc.git] / src / test / compile-fail / repeat_count.rs
CommitLineData
1a4d82fc 1// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// Regression test for issue #3645
12
13fn main() {
14 let n = 1;
1a4d82fc
JJ
15 let a = [0; n]; //~ ERROR expected constant integer for repeat count, found variable
16 let b = [0; ()];
17//~^ ERROR expected constant integer for repeat count, found non-constant expression
18//~^^ ERROR: expected `usize`, found `()`
19 let c = [0; true]; //~ ERROR expected positive integer for repeat count, found boolean
20 //~^ ERROR: expected `usize`, found `bool`
21 let d = [0; 0.5]; //~ ERROR expected positive integer for repeat count, found float
22 //~^ ERROR: expected `usize`, found `_`
23 let e = [0; "foo"]; //~ ERROR expected positive integer for repeat count, found string
24 //~^ ERROR: expected `usize`, found `&'static str`
25 let f = [0; -4];
26 //~^ ERROR expected positive integer for repeat count, found negative integer
27 let f = [0us; -1];
28 //~^ ERROR expected positive integer for repeat count, found negative integer
223e47cc 29}