Details
-
Type:
Defect
-
Status:
Closed
-
Priority:
Major
-
Resolution: Declined
-
Affects Version/s: Release 1.3
-
Fix Version/s: None
-
Component/s: None
-
Labels:
-
Environment:$ java -version
java version "1.6.0_29"
Java(TM) SE Runtime Environment (build 1.6.0_29-b11-402-11M3527)
Java HotSpot(TM) 64-Bit Server VM (build 20.4-b02-402, mixed mode)
Description
Hi,
When extending a class that defines a method with the signature "public void load();", I get the following load time error:
java.lang.ClassFormatError: Duplicate method name&signature
Looking into javap, I see that in fact gen-class is generating two entries for the load method. Prefix does not help in this case, as the defined load method is generated anyway.
Cheers,
- Daniel
Hi,
I've create this small sample project to exemplify the bug ocurring: https://github.com/danielribeiro/ClojureBugReport
Cheers,