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