ref: 8acfc5e2a00efe3866d7c5aa9201d4bd0fe9216e dir: /test/gsizeof.myr/
use std /* checks that sizeof works on generics. exits with 5. */ generic sz = {a:@a -> sizeof(@a) } const main = { std.exit(sz(123) + sz("asdf"[0])) }