Repository: groovy Updated Branches: refs/heads/GROOVY_2_5_X f85374568 -> 9ce3e1aa9
Add a test for "GROOVY-8405: Inherited methods with default parameters cause cause static compilation to fail" (cherry picked from commit 680317fc2c4e9cdf2707b386e5cc5f49f670bab9) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/9ce3e1aa Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/9ce3e1aa Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/9ce3e1aa Branch: refs/heads/GROOVY_2_5_X Commit: 9ce3e1aa938c91e6ffbc5afd4feacca2ccd42ff8 Parents: f853745 Author: Daniel Sun <[email protected]> Authored: Sat Aug 18 16:47:04 2018 +0800 Committer: Daniel Sun <[email protected]> Committed: Sat Aug 18 23:18:27 2018 +0800 ---------------------------------------------------------------------- src/test/groovy/bugs/Groovy8405Bug.groovy | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/9ce3e1aa/src/test/groovy/bugs/Groovy8405Bug.groovy ---------------------------------------------------------------------- diff --git a/src/test/groovy/bugs/Groovy8405Bug.groovy b/src/test/groovy/bugs/Groovy8405Bug.groovy new file mode 100644 index 0000000..7393aa8 --- /dev/null +++ b/src/test/groovy/bugs/Groovy8405Bug.groovy @@ -0,0 +1,52 @@ +/* + * 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 + +class Groovy8405Bug extends CompilableTestSupport { + void test() { + assertScript ''' + import groovy.transform.CompileStatic + + @CompileStatic + class BrokenMethods { + public static void main(String[] args) { + new SubType().sample('hi') + } + } + + @CompileStatic + class SuperType { + void sample(String string, Integer arg=0) { + assert false: 'Unexpected method is chosen' + } + } + @CompileStatic + class SubType extends SuperType { + @Override + void sample(String string) { + assert 'hi' == string + } + } + + ''' + } + +}
