Hey folks. Got a weird issue here, feels like I'm doing something stupid. I have a library with a number of methods placed directly in a file (not class/object members). I've published a JAR for the library, and in another project I declare this library as a dependency. From the second project, when I wildcard import the package that contains the methods, the methods are visible/accessible, but attempting to use one gives me an error like this:
Overload resolution ambiguity:
public fun method(param: ParamType): ReturnType defined in com.abc.package
public fun method(param: ParamType): ReturnType defined in com.abc.package