3d8d92c7d3
- test data files renamed from *.jet to *.kt
8 lines
141 B
Kotlin
8 lines
141 B
Kotlin
// check no error when regular function and extension function have same name
|
|
|
|
package extensionAndRegular
|
|
|
|
fun who() = 1
|
|
|
|
fun Int.who() = 1
|