Files
codeql/java/ql/test/query-tests/dead-code/DeadMethod/InternalDeadCodeCycle.java
2018-08-30 10:48:05 +01:00

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.
}
}