``` julia> round(Integer, Inf) ERROR: InexactError: trunc(Int64, Inf) Stacktrace: [1] trunc @ ./float.jl:781 [inlined] [2] trunc @ ./float.jl:354 [inlined] [3] round(#unused#::Type{Integer}, x::Float64) @ Base ./float.jl:359 [4] top-level scope @ REPL[14]:1 julia> round(Integer, big(Inf)) 0 ```