mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
235 B
Java
14 lines
235 B
Java
import org.test.SampleAnnotationType;
|
|
import org.test.SampleType;
|
|
|
|
public class Test {
|
|
|
|
@SampleAnnotationType
|
|
public void test() {
|
|
new SampleType().sampleField = null;
|
|
new SampleType().sampleMethod();
|
|
}
|
|
|
|
}
|
|
|