Files
kotlin/idea/testData/cache/kotlinShortNamesCacheTestDataMethods.kt
2016-09-28 13:36:20 +02:00

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() {
}
}
}