Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/javadocBlankLines/beforeCommentStart.java
T
2022-02-21 19:37:19 +00:00

13 lines
206 B
Java

// "Insert <p>" "false"
class Test {
/**
*<caret>
* Answer to the ultimate question of life, the universe, and everything
*
* @return The number 42
*/
int answer() {
return 42;
}
}