Some examples showing this ``` julia> 1.1^typemin(Int) 0.9090909090909091 julia> 1.1^(typemin(Int)+1) 0.0 julia> 1.1^Float64(typemin(Int64)) 0.0 ``` ``` julia> 0.05^typemin(Int) 20.0 julia> 0.05^(typemin(Int)+1) Inf ```