Temporary workaround to compile bootstrap version

May be reverted soon
This commit is contained in:
Denis Zharkov
2015-09-04 12:27:51 +03:00
parent 4159c83282
commit bf38f56261
2 changed files with 5 additions and 4 deletions
+1
View File
@@ -76,6 +76,7 @@ public annotation(retention = SOURCE) class Suppress(vararg val names: String)
* backend.
*/
target(FUNCTION)
// @deprecated("Use kotlin.tailrec instead", ReplaceWith("kotlin.tailrec"))
public annotation(retention = SOURCE) class tailRecursive
target(FUNCTION)
@@ -16,14 +16,14 @@
package kotlin.reflect
@deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KTopLevelFunction<out R> : KFunction<R>
@deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KTopLevelExtensionFunction<in E, out R>
@deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KMemberFunction<in T, out R> : KFunction<R>
@deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
public interface KLocalFunction<out R> : KFunction<R>