mirror of
https://github.com/github/codeql.git
synced 2026-03-06 15:49:08 +01:00
14 lines
253 B
Java
14 lines
253 B
Java
package locations;
|
|
|
|
@interface TestAnnotation {
|
|
public int foo();
|
|
}
|
|
|
|
@TestAnnotation(foo=-42)
|
|
public class A {
|
|
{ int x = -23; }
|
|
{ System.out.println("Hello, " + "world!"); }
|
|
{ System.out.println("Hello" + ", " + "world!"); }
|
|
{ String s = null; }
|
|
}
|