Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Java 1.5.0_03 on Windows Xp
Description
Suppose I have one Groovy source file which uses a class defined in a second file:
bug11A.groovy:
b = new bug11B()
But that the other file has a compilation error:
bug11B.groovy:
class bug11B {
xxx yyy
}
If I type "groovy bug11A.groovy" at the command line, I get:
General error during class generation: No such class: bug11B in constructor call for class: bug11A. At [3:5] bug11A.groovy
Which isn't very helpful.