mirror of
https://github.com/github/codeql.git
synced 2026-04-25 08:45:14 +02:00
Java: Automodel package private test case
This commit is contained in:
@@ -13,4 +13,9 @@ public class PublicClass {
|
||||
protected void nonPublicStuff(String arg) {
|
||||
System.out.println(arg);
|
||||
}
|
||||
|
||||
// arg is not a candidate because the method is not public:
|
||||
void packagePrivateStuff(String arg) {
|
||||
System.out.println(arg);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user