This repository was archived by the owner on Oct 25, 2021. It is now read-only.
This repository was archived by the owner on Oct 25, 2021. It is now read-only.
Java: opExplicit (and probably opImplicit) results in invalid method generation #581
Open
Description
Explicit operator overloads are transformed to opExplicit(). Unfortunately operators are different from normal methods and they can have overloads for the same argument and different return type e.g.
char opExplicit(BigDecimal b);
int opExplicit(BigDecimal b);
They have to be either excluded or given different names.