Repository: groovy Updated Branches: refs/heads/GROOVY_2_5_X 20c351f6a -> 53d2d7508
Add a test and workaround for GROOVY-8409 We should refine `GenericsTypeName` to distinguish different GenericsType with same name GROOVY-8409 is not fixed yet... (cherry picked from commit a70c7635ced04a831d362ecd2dab0f1602e86d42) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/53d2d750 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/53d2d750 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/53d2d750 Branch: refs/heads/GROOVY_2_5_X Commit: 53d2d75087bf19f4e62cc28414c49c83de5d4e71 Parents: 20c351f Author: Daniel Sun <[email protected]> Authored: Sun Aug 19 20:24:02 2018 +0800 Committer: Daniel Sun <[email protected]> Committed: Sun Aug 19 20:25:35 2018 +0800 ---------------------------------------------------------------------- src/test/groovy/bugs/Groovy8409Bug.groovy | 69 ++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/53d2d750/src/test/groovy/bugs/Groovy8409Bug.groovy ---------------------------------------------------------------------- diff --git a/src/test/groovy/bugs/Groovy8409Bug.groovy b/src/test/groovy/bugs/Groovy8409Bug.groovy new file mode 100644 index 0000000..c4de8b7 --- /dev/null +++ b/src/test/groovy/bugs/Groovy8409Bug.groovy @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package groovy.bugs + +import gls.CompilableTestSupport +import groovy.transform.NotYetImplemented + +class Groovy8409Bug extends CompilableTestSupport { + @NotYetImplemented + void test() { + assertScript ''' + import groovy.transform.CompileStatic + import java.util.function.BiFunction + + @CompileStatic + class Groovy8409Bug { + + static <T> T actionWrapperT(BiFunction<Date, URL, T> action) { + T result = action.apply(new Date(), new URL('http://www.example.com')) + // do something else here + return result + } + + static void main(String[] args) { + Groovy8409Bug t = actionWrapperT { Date date, URL url -> new Groovy8409Bug() } + } + + } + ''' + } + + void testWorkaround() { + assertScript ''' + import groovy.transform.CompileStatic + import java.util.function.BiFunction + + @CompileStatic + class Groovy8409Bug { + + static <X> X actionWrapperT(BiFunction<Date, URL, X> action) { + X result = action.apply(new Date(), new URL('http://www.example.com')) + // do something else here + return result + } + + static void main(String[] args) { + Groovy8409Bug t = actionWrapperT { Date date, URL url -> new Groovy8409Bug() } + } + + } + ''' + } +}
