Java: Added extra test cases for fields

This commit is contained in:
Napalys Klicius
2025-08-22 07:23:13 +00:00
parent 38b3df07ee
commit 4705ad2e32
2 changed files with 8 additions and 0 deletions

View File

@@ -31,4 +31,8 @@ public class SourcePackage extends Annotated {
};
lambda.run();
}
String myField1 = Annotated.m1; // $ Alert
public String myField2 = Annotated.m1; // $ Alert
private String myField3 = Annotated.m1; // $ Alert
protected String myField4 = Annotated.m1; // $ Alert
}