Consider the following:
int a = 1
int b = 2
def c = a / b
println(c)
println(c.class)
This script prints "0.5" and "java.math.BigDecimal" however the hover for "c" indicates the type "int". https://docs.groovy-lang.org/latest/html/documentation/#_math_operations
