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