rust/tests/ui/inline-const/const-expr-array-init.rs

8 lines
95 B
Rust
Raw Normal View History

//@ build-pass
2020-10-06 20:53:12 +00:00
use std::cell::Cell;
fn main() {
let _x = [const { Cell::new(0) }; 20];
}