18 lines
276 B
Kotlin
18 lines
276 B
Kotlin
package library
|
|
|
|
fun topLevelFunction() {}
|
|
|
|
fun topLevelFunction(s: String) {}
|
|
|
|
val topLevelProperty: Int = 0
|
|
|
|
class TopLevelClass() {
|
|
|
|
constructor(s: String) : this() {}
|
|
|
|
fun memberFunction() {}
|
|
|
|
fun memberFunction(s: String) {}
|
|
|
|
val memberProperty: Int = 0
|
|
} |