<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">class A { int x = 1; }
class B extends A {}

public class inherit1 {
    public static void main(String[] args) {
	B b = new B();
	System.out.println(b.x);
    }
}

// output: 1


</pre></body></html>