JDK-7078829 : compiler stackoverflows
  • Type: Bug
  • Component: tools
  • Sub-Component: javac
  • Affected Version: 6u27,7
  • Priority: P3
  • Status: Closed
  • Resolution: Duplicate
  • OS: windows_xp
  • CPU: generic,x86
  • Submitted: 2011-08-13
  • Updated: 2012-03-20
  • Resolved: 2011-09-20
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7 JDK 8
7u4Resolved 8Resolved
Related Reports
Duplicate :  
Relates :  
Description
FULL PRODUCT VERSION :


A DESCRIPTION OF THE PROBLEM :
compiler stackoverflows for code:

interface Interface<T> {}
class Bang<T> implements Interface<Interface<? super Bang<Bang<T>>>> {
 
    static void bang() {
        Interface<? super Bang<Byte>> bang = new Bang<Byte>();
    }
     
}



REPRODUCIBILITY :
This bug can be reproduced always.