benleggiero
03/07/2017, 3:44 PMoperator fun MyClass.plus(o: Other): Something { ... }
and then operator fun MyClass.add(o: Other): SomethingElse { ... }
it'd say that you already define the function, despite them having different names. If it's somehow made to still compile, then which does it choose when you do myClass + other
?