文本文件  |  16行  |  171 B

class Test{

    interface Foo{
        double foobar();
    }

    interface Bar extends Foo {

    }

    void test(){
        Bar b = null;
        b.foobar();
    }

}