Paul King created GROOVY-8094:
---------------------------------
Summary: Final variable analysis giving incorrect message within
nested if
Key: GROOVY-8094
URL: https://issues.apache.org/jira/browse/GROOVY-8094
Project: Groovy
Issue Type: Bug
Reporter: Paul King
{code}
def method() {
final z = null
if (z != null) {
z = 3
}
}
{code}
gives error message:
{noformat}
1 compilation error:
The variable [z] may be uninitialized
. At [5:11] at line: 5, column: 11
{noformat}
but really the error message should be:
{noformat}
The variable [z] is declared final but is reassigned
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)