Name: ggC50526 Date: 08/27/97
Run the following code which uses cyclic inheritance.
The compiler falls into an infinite loop when you
compile the following code. But if you remove the constructor,
the compiler gives the correct error message.
import java.awt.*;
public class New extends New
{
public New(String t)
{
super(t);
}
}
company - NCR Corp. , email - ###@###.###
======================================================================
- duplicates
-
JDK-4073739 The compiler falls into an infinite loop instead of giving an error.
-
- Closed
-