ref: 87d75da15310e2c3aa65375a7b3c67f7fe238ec7 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]) }