mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
9 lines
134 B
Kotlin
Vendored
9 lines
134 B
Kotlin
Vendored
package foo
|
|
|
|
open class Super {
|
|
<!JS_NAME_CLASH!>val foo<!> = 23
|
|
}
|
|
|
|
class Sub : Super() {
|
|
<!JS_NAME_CLASH!>fun foo()<!> = 42
|
|
} |