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

5 lines
52 B
Kotlin
Vendored

class Aaa() {
fun f() = 1
fun <P> f() = 1
}