ref: 9c1dd3355d31004cc2875f1ed055372e9b8b6d50 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]) }