Sign in
rust
/
rust-lang
/
gcc
/
76c5e4bca2855f289206c436dbdfd00b1e3b172d
/
.
/
libjava
/
testsuite
/
libjava.compile
/
inner_inherit.java
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
);
}
}