Files
kotlin-fork/idea/testData/quickfix/migration/stdlib/importStatic.after.java
T

10 lines
203 B
Java
Vendored

// "Replace with new qualified name" "true"
// WITH_RUNTIME
import static kotlin.collections.ArraysKt<caret>.component1;
class C {
public void foo(byte[] bytes) {
component1(bytes);
}
}