Java: Automodel package private test case

This commit is contained in:
Stephan Brandauer
2023-07-28 14:18:03 +02:00
parent f5c4155d63
commit be629b27ed

View File

@@ -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);
}
}