Do not mangle internal @PublishedApi functions
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class A {
|
||||
|
||||
@PublishedApi
|
||||
internal fun published() = "OK"
|
||||
|
||||
inline fun test() = published()
|
||||
|
||||
}
|
||||
|
||||
fun box() : String {
|
||||
return A().test()
|
||||
}
|
||||
Reference in New Issue
Block a user