2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
6 lines
152 B
Plaintext
Vendored
6 lines
152 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
@Deprecated("", ReplaceWith("s.substring(1) + Int.MAX_VALUE"))
|
|
fun foo(s: String): String {
|
|
return s.substring(1) + Int.MAX_VALUE
|
|
}
|