// Test if inherited fields are accessible in types appearing in method/field // signatures. // Expected result: PASS class k5 extends k5a { public static void main(String[] args) { } void foo(k5b y) {} void foo(k5b y, int v) {} k5b z; k5b w; } class k5a { static final int x = 3; } template class k5b { }