Optimize imports remove reference to get extension function

#KT-3397 Fixed
This commit is contained in:
Natalia.Ukhorskaya
2013-03-12 11:38:19 +04:00
parent fa5fcbbad1
commit 4039202806
5 changed files with 29 additions and 0 deletions
@@ -0,0 +1,4 @@
import test1.MyClass
import test1.get
val s = MyClass()[1]
@@ -0,0 +1,4 @@
import test1.MyClass
import test1.get
val s = MyClass()[1]
@@ -0,0 +1,8 @@
package test1
public class MyClass {
}
public fun MyClass.get(i: Int): Int {
return 1
}