Files
kotlin-fork/idea/testData/copyPaste/conversion/FileWithNoPackageStatement.java
T

10 lines
320 B
Java

// this test should cause the whole file to be converted at once (with non-selected text stripped) and the main function to be generated
package helloWorld;
// sample class
<selection>public class JavaClass {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
</selection>