_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.8.5 (2023-01-08)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> t = Tuple(zeros(Int32, 1024*1024*4));
julia> sizeof(t)
16777216
julia> convert(NTuple{1024*1024*4,UInt32}, t);
ERROR: StackOverflowError:
Stacktrace:
[1] top-level scope
@ REPL[2]:1
julia>