Add inspection for Integer.toString(i) to i.toString() (KT-12721)

This commit is contained in:
Austaon
2019-03-25 13:09:24 +03:00
committed by Nikolay Krasko
parent dde2b30601
commit efcc6f0967
14 changed files with 170 additions and 0 deletions
@@ -0,0 +1,5 @@
// WITH_RUNTIME
fun foo() {
Integer.<caret>toString(5)
}