Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/NoDefaultImport.kt
T
2015-09-04 18:19:31 +03:00

6 lines
112 B
Kotlin
Vendored

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