@groovy.transform.TypeChecked void m(){ String x x = "abc" println(x) println(x.getClass()) println() x = 123 println(x) println(x.getClass()) } m()