17 lines
205 B
Kotlin
17 lines
205 B
Kotlin
namespace Test.MyTest
|
|
|
|
class A {
|
|
class object {
|
|
public fun testOther(a: Boolean) {
|
|
|
|
}
|
|
|
|
public fun testOther(a: Int) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
fun testMy() {
|
|
A.testOther<caret>
|
|
} |