mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 19:40:07 +08:00
New test case.
From-SVN: r31949
This commit is contained in:
parent
3abd3239f3
commit
d6455b5baf
@ -1,3 +1,7 @@
|
||||
2000-02-12 Anthony Green <green@cygnus.com>
|
||||
|
||||
* libjava.compile/inner_inherit.java: New file.
|
||||
|
||||
2000-02-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
|
||||
|
||||
* libjava.lang/inner_interface.out: New file.
|
||||
|
14
libjava/testsuite/libjava.compile/inner_inherit.java
Normal file
14
libjava/testsuite/libjava.compile/inner_inherit.java
Normal file
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user