bf65a78a93
Added test on usage of a bridge method from different module. Bridge methods must be public in order use them from other modules.
9 lines
105 B
Kotlin
9 lines
105 B
Kotlin
package a
|
|
|
|
interface A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
open class C: A<Int> {
|
|
override fun foo(): Int = 42
|
|
} |