11 lines
218 B
Kotlin
Vendored
11 lines
218 B
Kotlin
Vendored
class Test {
|
|
companion object {
|
|
fun test(<!UNUSED_PARAMETER!>t<!>: TestInner) = 42
|
|
}
|
|
|
|
class TestStatic {
|
|
fun test(<!UNUSED_PARAMETER!>t<!>: TestInner) = 42
|
|
}
|
|
|
|
inner class TestInner
|
|
} |