Files
kotlin-fork/idea/testData/completion/handlers/SingleBrackets.kt
T
2011-12-25 15:51:59 +04:00

17 lines
203 B
Kotlin

package Test.MyTest
class A {
class object {
public fun testOther(a: Boolean) {
}
public fun testOther(a: Int) {
}
}
}
fun testMy() {
A.testOther<caret>
}