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

17 lines
198 B
Plaintext

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