9dedc6d2a9
#KT-1998 Fixed
13 lines
240 B
Kotlin
13 lines
240 B
Kotlin
// KT-1998 Strange "Overload resolution ambiguity"
|
|
|
|
object A {
|
|
val c : String = "test"
|
|
|
|
fun f(b: B): String {
|
|
return b.c // Test no "Overload resolution ambiguity" is reported here
|
|
}
|
|
}
|
|
|
|
class B
|
|
|
|
val B.c : String = "test" |