mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
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
|
|
} |