Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
SuSe Linux 8.2, JDK build 1.4.2_02-b03, Ant 1.5.3
Description
When compiling this code with groovyc, hit an OutOfMemoryError
during the compilation (i.e. it never completes), should either
be invalid syntax with a graceful exit, or valid syntax
----------------
package com.javanicus.groovytest
class NullPropertyTest extends GroovyTestCase {
// the following declaration seems to cause the groovyc
// compiler to hit OutOfMemory, either should be more
// graceful exit or valid syntax...
property wensleydale = null
void testNullProperty()
{ assert wensleydale == null }}
----------------