blob: 27b027eef220c4cffe035b38de13639ff7e9b368 [file] [log] [blame]
class Test{
interface Foo{
double foobar();
}
interface Bar extends Foo {
}
void test(){
Bar b = null;
b.foobar();
}
}