Treat inline-exposed internal API as effectively public.

Comment out unsupported cases.
This commit is contained in:
Ilya Gorbunov
2016-03-23 17:58:14 +03:00
parent 0aaf0ba60f
commit 10792de4c1
5 changed files with 50 additions and 9 deletions
@@ -12,11 +12,14 @@ internal class InternalClassExposed
@kotlin.internal.InlineExposed
internal fun funExposed() {}
// TODO: Cover unsupported cases: requires correctly reflecting annotations from properties
/*
@kotlin.internal.InlineExposed
internal var propertyExposed: String? = null
@JvmField
@kotlin.internal.InlineExposed
internal var fieldExposed: String? = null
*/
}