18feb8f622
#KT-12205 Fixed
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() {
|
|
}
|
|
}
|
|
}
|