Move InlineOnly to kotlin.internal package

This commit is contained in:
Denis Zharkov
2016-01-20 19:04:13 +03:00
parent ba506170e9
commit ad24092fd1
5 changed files with 13 additions and 27 deletions
@@ -50,4 +50,11 @@ internal annotation class HidesMembers
*/
@Target(AnnotationTarget.TYPE_PARAMETER)
@Retention(AnnotationRetention.BINARY)
internal annotation class OnlyInputTypes
internal annotation class OnlyInputTypes
/**
* Specifies that this function should not be called directly without inlining
*/
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.BINARY)
internal annotation class InlineOnly