mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
28 lines
339 B
Kotlin
Vendored
28 lines
339 B
Kotlin
Vendored
|
|
fun topLevelFunction(){
|
|
|
|
}
|
|
|
|
object B1 {
|
|
@JvmStatic
|
|
fun staticMethodOfObject() {
|
|
}
|
|
|
|
fun nonStaticMethodOfObject() {
|
|
}
|
|
}
|
|
|
|
class C1 {
|
|
fun methodOfClass() {
|
|
}
|
|
|
|
companion object {
|
|
@JvmStatic
|
|
fun staticMethodOfCompanion() {
|
|
}
|
|
|
|
fun nonStaticMethodOfCompanion() {
|
|
}
|
|
}
|
|
}
|