mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
260 B
Java
19 lines
260 B
Java
package javadoc;
|
|
|
|
/** A test class. */
|
|
public class Test {
|
|
/** A javadoc
|
|
* comment */
|
|
void f() {}
|
|
|
|
/** Another javadoc comment */
|
|
// and a normal comment
|
|
void g() {}
|
|
|
|
/* another normal comment */
|
|
int x;
|
|
int y;
|
|
|
|
/** @deprecated */
|
|
void h() {}
|
|
} |