ReplaceJavaStaticMethodWithKotlinAnalogInspection: don't report for Character.toString(int)

#KT-34859 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-01-30 13:01:07 +09:00
committed by Yan Zhulanow
parent b008e6c9be
commit ef5335ba99
3 changed files with 17 additions and 1 deletions
@@ -0,0 +1,6 @@
// PROBLEM: none
// DISABLE-ERRORS
fun foo() {
val codePoint = "1D41E".toInt(16)
val t = java.lang.Character.<caret>toString(codePoint)
}