gcc/libjava/testsuite/libjava.compile/inner_inherit.java

15 lines
241 B
Java
Raw Normal View History

2000-02-12 23:45:06 +01:00
// Test to insure that we can refer to methods inherited through an
// inner class.
public class inner_inherit
{
private class Agent extends Thread {
}
public void f ()
{
Agent a = new Agent();
a.setDaemon(true);
}
}