I cant `@JvmName("dotFloat")` methods in `interfac...
# announcements
e
I cant
@JvmName("dotFloat")
methods in `interface`s?
d
No. Assume you have
Copy code
open class A {
    open fun foo() = "Hello"
}

interface I {
    @JvmName("bar")
    fun foo(): String
}
Now if you do
Copy code
class B : A, I
Which name should the method have? It can't have both...
👍 1
s
Why do you need it?
e
I have a clash with two methods differing only for the argument
Vector3<Float>
and
Vector3<Double>