rust/tests/ui/repeat-expr/repeat_count.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
982 B
Rust
Raw Normal View History

// Regression test for issue #3645
fn main() {
let n = 1;
let a = [0; n];
//~^ ERROR attempt to use a non-constant value in a constant [E0435]
let b = [0; ()];
//~^ ERROR mismatched types
//~| expected `usize`, found `()`
2015-01-12 06:01:44 +00:00
let c = [0; true];
//~^ ERROR mismatched types
//~| expected `usize`, found `bool`
2015-01-12 06:01:44 +00:00
let d = [0; 0.5];
//~^ ERROR mismatched types
//~| expected `usize`, found floating-point number
2015-01-12 06:01:44 +00:00
let e = [0; "foo"];
//~^ ERROR mismatched types
//~| expected `usize`, found `&str`
let f = [0; -4_isize];
//~^ ERROR mismatched types
//~| expected `usize`, found `isize`
let f = [0_usize; -1_isize];
//~^ ERROR mismatched types
//~| expected `usize`, found `isize`
2020-05-20 13:59:57 +00:00
let f = [0; 4u8];
//~^ ERROR mismatched types
//~| expected `usize`, found `u8`
struct G {
g: (),
}
let g = [0; G { g: () }];
//~^ ERROR mismatched types
//~| expected `usize`, found `G`
}