Files
openide/java/java-tests/testData/inspection/implicitToExplicitClassBackwardMigration/afterWithPrint.java
Mikhail Pyltsin ee1495d613 [java-inspections] IDEA-355916 Support JEP 477 Update ImplicitToExplicit inspection
- first part. update for implicit static imports

GitOrigin-RevId: 8c0fdf1c8ebd424a80e53b93c707fba02a07448a
2024-07-04 20:24:54 +00:00

8 lines
147 B
Java

import static java.io.IO.println;
public class beforeWit<caret>hPrint {
public static void main() {
println("Hello, world!");
}
}