mirror of
https://github.com/github/codeql.git
synced 2026-06-14 17:31:09 +02:00
First pass converting qlref tests to inline expectation with postprocess
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
public class Main {
|
||||
public class Main { // $ Alert
|
||||
private static String ss = "a";
|
||||
private static String ss2 = "b";
|
||||
private final String is = "a";
|
||||
private final String is2 = "b";
|
||||
|
||||
private void unused() {
|
||||
private void unused() { // $ Alert
|
||||
indirectlyUnused();
|
||||
}
|
||||
|
||||
private void indirectlyUnused() {}
|
||||
private void indirectlyUnused() {} // $ Alert
|
||||
|
||||
private void foo() { bar(); }
|
||||
private void bar() { foo(); }
|
||||
private void foo() { bar(); } // $ Alert
|
||||
private void bar() { foo(); } // $ Alert
|
||||
|
||||
public static void main(String[] args) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user