|
Duplicate :
|
The following program crashes javac:
--- 8< ---
public class Test <T1, T1 extends MyObject, T2> {}
class MyObject {}
----------
The problem (IIRC) is the error message accesses the tsym.type of T1 or MyObject before it is attributed.
|