First pass converting qlref tests to inline expectation with postprocess

This commit is contained in:
Owen Mansel-Chan
2026-06-10 07:46:42 +02:00
parent 8d456df26f
commit 1c1d26453d
420 changed files with 2846 additions and 2598 deletions

View File

@@ -2,11 +2,11 @@ public class ReflectionTest {
public static class ParentClass {
// Not live
private int notInheritedField;
private int notInheritedField; // $ Alert
// Live because it is accessed through ChildClass
public int inheritedField;
// Not live because it is shadowed by the child
public int shadowedField;
public int shadowedField; // $ Alert
}
public static class ChildClass extends ParentClass {