// "Make 'a.i' package-private" "true-preview" import java.io.*; class a { private int i; } class b extends a { void f() { int p = i; } }