Files
kotlin-fork/idea/testData/completion/handlers/SingleBrackets.kt
T
2011-12-14 12:26:57 +04:00

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>
}