gcc/libjava/testsuite/libjava.compile/inner_inherit.java
Anthony Green d6455b5baf New test case.
From-SVN: r31949
2000-02-12 22:45:06 +00:00

15 lines
241 B
Java

// 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);
}
}