package object_in; public class TestFinalField { private final Object field; TestFinalField(Object y) { field = y; } }