blob: 44ad6a96c22a4b7319ff85b70ce54a8d82321677 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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);
}
}
|