mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
256 B
Rust
11 lines
256 B
Rust
const FOO: usize = FOO; //~ ERROR E0391
|
|
|
|
fn main() {
|
|
let _x: [u8; FOO]; // caused stack overflow prior to fix
|
|
let _y: usize = 1 + {
|
|
const BAR: usize = BAR;
|
|
let _z: [u8; BAR]; // caused stack overflow prior to fix
|
|
1
|
|
};
|
|
}
|