ARUNAVA SINHA created NETBEANS-481:
--------------------------------------
Summary: New ErrorRule to fix compiler error on initialization of
var type variable with literal array
Key: NETBEANS-481
URL: https://issues.apache.org/jira/browse/NETBEANS-481
Project: NetBeans
Issue Type: Improvement
Reporter: ARUNAVA SINHA
Assignee: ARUNAVA SINHA
Below statement throws compiler error.
var arr = \{1,2};
: error: cannot infer type for local variable var k = \{ 1 , 2 }; ^
(array initializer needs an explicit target-type)
Proposed fix would be
var arr = new int[] \{ 1, 2 };
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists