mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
233 B
Java
15 lines
233 B
Java
public class InternalDeadCodeCycle {
|
|
|
|
public void foo() {
|
|
bar();
|
|
}
|
|
|
|
public void bar() {
|
|
foo();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
// Ensure the class is live, otherwise the dead methods will not be reported.
|
|
}
|
|
}
|