Files
codeql/java/ql/test/library-tests/comments/TestWindows.java
2018-09-23 16:24:31 -07:00

23 lines
534 B
Java

/**
* A JavaDoc comment
* with multiple lines.
*/
class TestWindows {
/** A JavaDoc comment with a single line. */
void m() {
// a single-line comment
// another single-line comment
}
/* A block comment
* with multiple lines.
*/
/* A block comment with a single line. */
// an end-of-line comment with a spurious trailing comment marker */
// an end-of-line comment with trailing whitespace
//an end-of-line comment without a leading space
void test() {} // an end-of-line comment with preceding code
}