Fix @Throws for exported from libraries

This commit is contained in:
Svyatoslav Scherbina
2019-04-11 17:18:22 +03:00
committed by SvyatoslavScherbina
parent fd4adaaeaf
commit fefcb8082f
@@ -45,7 +45,7 @@ public annotation class RetainForTarget(val target: String)
* @property exceptionClasses the list of checked exception classes that may be thrown by the function.
*/
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
@Retention(AnnotationRetention.SOURCE)
@Retention(AnnotationRetention.BINARY)
public annotation class Throws(vararg val exceptionClasses: KClass<out Throwable>)
public typealias ThreadLocal = kotlin.native.concurrent.ThreadLocal