New test case.
From-SVN: r31949
This commit is contained in:
committed by
Anthony Green
parent
3abd3239f3
commit
d6455b5baf
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user