repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libjava
/
testsuite
/
libjava.compile
/
inner_inherit.java
blob
44ad6a96c22a4b7319ff85b70ce54a8d82321677
1
// Test to insure that we can refer to methods inherited through an
2
// inner class.
3
4
public class
inner_inherit
5
{
6
private class
Agent
extends
Thread
{
7
}
8
9
public void
f
()
10
{
11
Agent a
=
new
Agent
();
12
a
.
setDaemon
(
true
);
13
}
14
}