Sign in
android
/
toolchain
/
gcc
/
donut
/
.
/
gcc-4.2.1
/
libjava
/
testsuite
/
libjava.compile
/
abstr.java
blob: f59db268bc31d6187150197c7f6b54aa0067f354 [
file
]
// This fails to compile from bytecode for some versions of the compiler.
interface
foo
{
public
void
start
();
}
public
abstract
class
abstr
implements
foo
{
public
void
doit
()
{
start
();
}
}