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
/
abstr.java
blob
f59db268bc31d6187150197c7f6b54aa0067f354
1
// This fails to compile from bytecode for some versions of the compiler.
2
3
interface
foo
4
{
5
public void
start
();
6
}
7
8
public abstract class
abstr
implements
foo
9
{
10
public void
doit
()
11
{
12
start
();
13
}
14
}