Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/NoDefaultImport.kt
T
2015-05-27 16:15:50 +03:00

6 lines
112 B
Kotlin
Vendored

// WITH_RUNTIME
<caret>@deprecated("")
fun foo(s: String): String {
return s.substring(1) + Int.MAX_VALUE
}