-
Bug
-
Resolution: Fixed
-
P5
-
1.0
-
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.