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