Fixed deprecated symbol usage fix for functions with optional parameters from libraries

#KT-8525 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-08-11 13:01:47 +03:00
parent d53b990655
commit 1fd0578b9e
6 changed files with 44 additions and 14 deletions
@@ -0,0 +1,7 @@
// "Replace with 'matches(input)'" "true"
import kotlin.text.Regex
fun foo(regex: Regex) {
regex.<caret>hasMatch("")
}