Introduced QualifierReceiver instead of PackageType

This commit is contained in:
Svetlana Isakova
2014-08-02 15:52:44 +04:00
parent cc92589378
commit 8289f13016
32 changed files with 401 additions and 382 deletions
@@ -0,0 +1,9 @@
open class A {
fun foo() = 42
object B: A()
}
fun test() {
A.B.(A::foo)()
}