9 lines
123 B
Kotlin
Vendored
9 lines
123 B
Kotlin
Vendored
package foo
|
|
|
|
interface I {
|
|
<!JS_NAME_CLASH!>fun foo()<!> = 23
|
|
}
|
|
|
|
class Sub : I {
|
|
<!JS_NAME_CLASH!>var foo<!> = 42
|
|
} |