Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/name/extensionPropertyAndMethodDoNotClash.kt
T

9 lines
70 B
Kotlin
Vendored

package foo
class A
fun A.bar() = 32
val A.bar: Int
get() = 32