Sign in
rust
/
rust
/
7ce91c53c4c7fa80b60b49e030b0298d4e575d23
/
.
/
tests
/
ui
/
array-slice-vec
/
large-zst-array-compilation-time-68010.rs
blob: 607104dbaa12f85eff222f685c157826edf89aa1 [
file
]
// https://github.com/rust-lang/rust/issues/68010
//@ build-pass
fn
main
()
{
println
!(
"{}"
,
[();
usize
::
MAX
].
len
());
}