Files
kotlin-fork/compiler/testData/diagnostics/tests/overload/OverloadFunRegularAndExt.fir.kt
T

8 lines
141 B
Kotlin
Vendored

// check no error when regular function and extension function have same name
package extensionAndRegular
fun who() = 1
fun Int.who() = 1