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