mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 15:53:18 +00:00
12 lines
154 B
Kotlin
Vendored
12 lines
154 B
Kotlin
Vendored
package test
|
|
|
|
class PlatformStaticClass {
|
|
companion object {
|
|
@JvmStatic
|
|
fun <T> inClassObject() {}
|
|
}
|
|
|
|
fun <T> inClass() {}
|
|
}
|
|
|