Files
kotlin-fork/nj2k/testData/newJ2k/postProcessing/GuardClause.kt
T
2019-08-09 00:43:28 +03:00

5 lines
109 B
Kotlin
Vendored

class Test {
internal fun test(s: String?) {
requireNotNull(s) { "s should not be null" }
}
}