ref: 34c3e5b0116a5283433c9cf6c3484ee6967e3030 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]) }