Repository: groovy Updated Branches: refs/heads/master 21e0148d0 -> 680317fc2
Add a test for "GROOVY-8405: Inherited methods with default parameters cause cause static compilation to fail" Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/680317fc Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/680317fc Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/680317fc Branch: refs/heads/master Commit: 680317fc2c4e9cdf2707b386e5cc5f49f670bab9 Parents: 21e0148 Author: Daniel Sun <[email protected]> Authored: Sat Aug 18 16:47:04 2018 +0800 Committer: Daniel Sun <[email protected]> Committed: Sat Aug 18 16:47:04 2018 +0800 ---------------------------------------------------------------------- src/test/groovy/bugs/Groovy8405Bug.groovy | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/680317fc/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 + } + } + + ''' + } + +}
