kyonifer
interface A<T> { fun go(t:T) } class B:A<Double> { override fun go(t:Double){} // java.lang.Double fun go(t:Double){} // i want double here }