blob: 7141e4874c02df96fec7968bd48442087533cc87 [file] [log] [blame]
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
};
}