mirror of
https://github.com/github/codeql.git
synced 2026-06-13 08:51:20 +02:00
21 lines
219 B
Java
21 lines
219 B
Java
public class Test {
|
|
@Deprecated
|
|
void m() {}
|
|
|
|
@Deprecated
|
|
void n() {
|
|
// OK
|
|
m();
|
|
}
|
|
|
|
{
|
|
// NOT OK
|
|
m(); // $ Alert
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
// NOT OK
|
|
new Test().n(); // $ Alert
|
|
}
|
|
}
|