d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
5 lines
100 B
Kotlin
Vendored
5 lines
100 B
Kotlin
Vendored
class Test {
|
|
fun test(s: String?) {
|
|
requireNotNull(s) { "s should not be null" }
|
|
}
|
|
} |