blob: 44ad6a96c22a4b7319ff85b70ce54a8d82321677 [file] [log] [blame]
// 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);
}
}