d2792533b8
#KT-65690 Fixed
12 lines
245 B
Kotlin
Vendored
12 lines
245 B
Kotlin
Vendored
package test
|
|
|
|
fun emptyKtClassWorkaround() = Unit
|
|
class PublicOuterClass {
|
|
|
|
internal interface TransitivelyPublicInterface
|
|
|
|
data class Data internal constructor(
|
|
val couldNotBeRemoved: String
|
|
): TransitivelyPublicInterface
|
|
}
|