DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / inline-const / const-expr-array-init.rs
123456789
// build-pass #![feature(inline_const)] use std::cell::Cell; fn main() { let _x = [const { Cell::new(0) }; 20]; }