Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/kt3470.kt
T
Alexander Udalov e2622b5dbb Resolve extension calls on class objects
#KT-3470 Fixed
2013-11-18 19:51:29 +04:00

8 lines
90 B
Kotlin

class A {
class object {
fun foo() = toString()
}
}
val a = A.toString()