-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P5
-
Affects Version/s: 1.0
-
Component/s: tools
-
1.0alpha
-
sparc
-
solaris_2.4
-
Not verified
The compiler allows a constructor to call it self.
For example:
class bug130 {
bug130() {
this();
}
}
The compiler should produce a warning in that case.
For example:
class bug130 {
bug130() {
this();
}
}
The compiler should produce a warning in that case.