Move built-ins from package "jet" to "kotlin"

#KT-2896 Fixed
This commit is contained in:
Alexander Udalov
2014-02-20 16:27:58 +04:00
parent 6b0fce8cd5
commit d9029917eb
28 changed files with 37 additions and 36 deletions
+9
View File
@@ -0,0 +1,9 @@
package kotlin
public open class Any {
public open fun equals(other: Any?): Boolean
public open fun hashCode(): Int
public open fun toString(): String
}