[ https://issues.apache.org/jira/browse/GROOVY-11639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17947557#comment-17947557 ]
ASF GitHub Bot commented on GROOVY-11639: ----------------------------------------- codecov-commenter commented on PR #2205: URL: https://github.com/apache/groovy/pull/2205#issuecomment-2832777772 ## [Codecov](https://app.codecov.io/gh/apache/groovy/pull/2205?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report All modified and coverable lines are covered by tests :white_check_mark: > Project coverage is 68.9496%. Comparing base [(`a57357e`)](https://app.codecov.io/gh/apache/groovy/commit/a57357e9a4b13dea7da8917005271799b0e0ec67?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) to head [(`6d0622b`)](https://app.codecov.io/gh/apache/groovy/commit/6d0622b2fbc3e2fbd4431704947bd64daf017a89?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). <details><summary>Additional details and impacted files</summary> [](https://app.codecov.io/gh/apache/groovy/pull/2205?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) ```diff @@ Coverage Diff @@ ## master #2205 +/- ## ================================================== + Coverage 68.9394% 68.9496% +0.0102% - Complexity 29566 29571 +5 ================================================== Files 1423 1423 Lines 113916 113918 +2 Branches 19761 19760 -1 ================================================== + Hits 78533 78546 +13 + Misses 28780 28773 -7 + Partials 6603 6599 -4 ``` | [Files with missing lines](https://app.codecov.io/gh/apache/groovy/pull/2205?dropdown=coverage&src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) | Coverage Δ | | |---|---|---| | [src/main/java/groovy/lang/MetaClassImpl.java](https://app.codecov.io/gh/apache/groovy/pull/2205?src=pr&el=tree&filepath=src%2Fmain%2Fjava%2Fgroovy%2Flang%2FMetaClassImpl.java&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-c3JjL21haW4vamF2YS9ncm9vdnkvbGFuZy9NZXRhQ2xhc3NJbXBsLmphdmE=) | `78.2320% <100.0000%> (+0.0241%)` | :arrow_up: | | [...va/org/codehaus/groovy/reflection/CachedClass.java](https://app.codecov.io/gh/apache/groovy/pull/2205?src=pr&el=tree&filepath=src%2Fmain%2Fjava%2Forg%2Fcodehaus%2Fgroovy%2Freflection%2FCachedClass.java&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#diff-c3JjL21haW4vamF2YS9vcmcvY29kZWhhdXMvZ3Jvb3Z5L3JlZmxlY3Rpb24vQ2FjaGVkQ2xhc3MuamF2YQ==) | `70.0820% <100.0000%> (ø)` | | ... and [4 files with indirect coverage changes](https://app.codecov.io/gh/apache/groovy/pull/2205/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) </details> <details><summary> :rocket: New features to boost your workflow: </summary> - :snowflake: [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems. - :package: [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges. </details> > interface extends interface and uses static field in default method > ------------------------------------------------------------------- > > Key: GROOVY-11639 > URL: https://issues.apache.org/jira/browse/GROOVY-11639 > Project: Groovy > Issue Type: Bug > Affects Versions: 5.0.0-alpha-12 > Reporter: Eric Milles > Assignee: Eric Milles > Priority: Minor > > Consider the following: > {code:groovy} > interface I { > String FOO = 'foo' > } > interface J extends I { > default String dm() { > FOO + 'bar' > } > } > class C implements J { > def m() { > dm() + 'baz' > } > } > assert new C().m() == 'foobarbaz' > {code} > {code} > groovy.lang.MissingPropertyException: No such property: FOO for class: C > at J.dm(Groovy10312.groovy:6) > at C.m(Groovy10312.groovy:11) > at Groovy11xxx.run(Groovy10312.groovy:15) > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)