/media/sda-magnetic/david/Extern-Magnetic-2022-06-29/Extern01/Dokumente-2021-05-8/disk10-ab-2020-01-10/02-debian-pc2-work/informatik/java-new/java-2020-10-26-before/Foo.java


public class Foo {
    private int x;
    private static char c = 'c';

    Foo(int x) {
        this.x = x;
    }

    Foo() {
        x = 42;
    }

    class Bar {
        Object y;

        void m(Foo foo) {
            y = new Object();
        }

        void m(String foo) {
            y = foo;
        }

        Bar() {
            y = new Object();
        }
    }

    Object z() {
        return new String();
    }
    
    static public void main (String [] args) {
    
    }
}