10 lines
112 B
Kotlin
Vendored
10 lines
112 B
Kotlin
Vendored
package foo
|
|
|
|
open class Super {
|
|
fun foo() = 23
|
|
}
|
|
|
|
class Sub : Super() {
|
|
@JsName("foo") fun bar() = 42
|
|
}
|