Groovy-Skripte lösen einen Fehler aus: def a = "test" + "test" + "test" Error: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Während dieses Skript gut funktioniert: def a = new String( "test" + "test" + "test" )