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