Inspection for migrating Kotlin stdlib API usages in Java code

This commit is contained in:
Dmitry Jemerov
2015-12-14 19:11:18 +01:00
parent 3dfb9d2e5e
commit c83b6ed3a5
12 changed files with 233 additions and 0 deletions
@@ -0,0 +1,10 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import kotlin.ArraysKt;
class C {
public void foo(byte[] bytes) {
<caret>ArraysKt.component1(bytes);
}
}