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