Sign in
rust
/
rust
/
ef4cff2ea33e070b7fa7253fdb4a88e3f4086a15
/
.
/
tests
/
ui
/
inline-const
/
const-expr-array-init.rs
blob: eb126b61f2dfeb48e72852ea0d0e485d8e8b80a5 [
file
] [
log
] [
blame
]
//@ build-pass
use
std
::
cell
::
Cell
;
fn
main
()
{
let
_x
=
[
const
{
Cell
::
new
(
0
)
};
20
];
}