mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
22 lines
474 B
Rust
22 lines
474 B
Rust
// Regression test for issue #91560.
|
|
|
|
//@ run-rustfix
|
|
|
|
#![allow(unused,non_upper_case_globals)]
|
|
|
|
fn foo() {
|
|
const length: usize = 2;
|
|
//~^ HELP: consider using `const`
|
|
let arr = [0; length];
|
|
//~^ ERROR: attempt to use a non-constant value in a constant [E0435]
|
|
}
|
|
|
|
fn bar() {
|
|
const length: usize = 2;
|
|
//~^ HELP: consider using `const`
|
|
let arr = [0; length];
|
|
//~^ ERROR: attempt to use a non-constant value in a constant [E0435]
|
|
}
|
|
|
|
fn main() {}
|