Files
kotlin-fork/compiler/testData/diagnostics/testWithModifiedMockJdk/newStringMethods.kt
T

13 lines
255 B
Kotlin
Vendored

// !CHECK_TYPE
// SKIP_TXT
// WITH_RUNTIME
fun foo(s: String) {
s.isBlank()
s.lines().checkType { _<List<String>>() }
s.repeat(1)
// We don't have `strip` extension, so leave it for a while in gray list
s.<!DEPRECATION!>strip<!>()
}