Made bridge methods public.
Added test on usage of a bridge method from different module. Bridge methods must be public in order use them from other modules.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package a
|
||||
|
||||
interface A<T> {
|
||||
fun foo(): T
|
||||
}
|
||||
|
||||
open class C: A<Int> {
|
||||
override fun foo(): Int = 42
|
||||
}
|
||||
Reference in New Issue
Block a user