This repository was archived by the owner on Oct 25, 2021. It is now read-only.

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.