ref: 95a76e16ded89189df3f85bfbaf5d40088e5cd97 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]) }