90b0ea73dc
#KT-30640 Fixed #KT-22412 Fixed
5 lines
109 B
Kotlin
Vendored
5 lines
109 B
Kotlin
Vendored
class Test {
|
|
internal fun test(s: String?) {
|
|
requireNotNull(s) { "s should not be null" }
|
|
}
|
|
} |