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