Bugs item #994688, was opened at 2004-07-20 12:52
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=994688&group_id=44253
Category: DynamicJava
Group: Annoying
Status: Open
Resolution: None
Priority: 5
Submitted By: Dan Smith (dlsmith)
Assigned to: Nobody/Anonymous (nobody)
Summary: Incorrect DynamicJava error for inner class instantiation
Initial Comment:
The following file is compiled from the interactions pane:
--------------------
class Outer {
class Inner {
}
}
class Test {
Outer.Inner i = new Outer().new Inner();
}
--------------------
I then have the following interaction:
Welcome to DrJava.
> Outer.Inner i = new Outer().new Inner()
Error: Undefined class 'Outer$Outer$Inner'
If I do this instead, there is no error:
Welcome to DrJava.
> Outer.Inner i
> i = new Outer().new Inner()
Outer$Inner@738d08
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=994688&group_id=44253
|