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