blob: d0b01a4660c52dd23251a7efac729fffeb1a288b [file] [log] [blame]
package Test.MyTest
class A {
companion object {
public fun testOther(a: Boolean) {
}
public fun testOther(a: Int) {
}
}
}
fun testMy() {
A.testOther()
}