Groovy scripts wywołuje błąd: def a = "test" + "test" + "test" Błąd: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Chociaż ten skrypt działa dobrze: def a = new String( "test" + "test" + "test" ) Czemu?