Files
openide/java/java-tests/testData/inspection/explicitToImplicitClassMigration/afterSimpleWithComments.java
T
Mikhail Pyltsinandintellij-monorepo-bot 858b2cd664 [java-inspections] IJ-CR-123164 IDEA-341641 Intention to convert implicit class to explicit and vice versa
- more tests
- small optimization
- preserve first comment in created implicitly declared classes
- fixed java docs
- move highlighting to the whole declaration

GitOrigin-RevId: e7ea706151f09852473e31d3831bb3008da62475
2024-01-09 11:04:51 +00:00

10 lines
219 B
Java

// "Convert into implicitly declared class" "true-preview"
/**
* comments
*/ /*comments2*/ /*comments3*/
public static void main(String[] args) {
//comments4
System.out.println("Hello, world!");
}
//comments5