mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
10 lines
127 B
Kotlin
Vendored
10 lines
127 B
Kotlin
Vendored
package test
|
|
|
|
class Modifiers {
|
|
external fun extFun()
|
|
|
|
var extVar: Int = 1
|
|
external get
|
|
external set
|
|
}
|