Replace "jet" package name with "kotlin" in testData

This commit is contained in:
Alexander Udalov
2014-02-21 23:29:57 +04:00
parent f2b4c7fa3e
commit f7b6457139
763 changed files with 2314 additions and 2310 deletions
@@ -2,12 +2,12 @@ package test
internal open class BaseClass {
/*primary*/ public constructor BaseClass()
internal open val shape: jet.String
internal open fun <get-shape>(): jet.String
internal open val shape: kotlin.String
internal open fun <get-shape>(): kotlin.String
}
internal open class Subclass : test.BaseClass {
/*primary*/ public constructor Subclass()
internal open override /*1*/ val shape: jet.String
internal open override /*1*/ fun <get-shape>(): jet.String
internal open override /*1*/ val shape: kotlin.String
internal open override /*1*/ fun <get-shape>(): kotlin.String
}