Huabin Zhang created GROOVY-8203:
------------------------------------
Summary: Add @Newify will cause Elvis operator NPE
Key: GROOVY-8203
URL: https://issues.apache.org/jira/browse/GROOVY-8203
Project: Groovy
Issue Type: Bug
Components: xforms
Affects Versions: 2.4.11
Environment: Win 8.1, Oracle JDK 8u121, Groovy 2.4.11
Reporter: Huabin Zhang
Priority: Critical
Hi, guys:
When I add @Newify annotation to a class and then use {{?:}} operator, I'll
get a NPE, please see the sample code as below:
{code:groovy|title=Z.groovy|borderStyle=solid}
@Newify(A)
class Z {
static void main(String... args) {
def a
a?.get('b')
}
class A {
}
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)