repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
libjava
/
testsuite
/
libjava.compile
/
PR5641.java
blob
8c7d3aa27c004e7cb93db7e98147efd95b69cbfc
1
interface
I
2
{
3
void
m
();
4
}
5
abstract class
C
implements
I
{}
6
class
Foo
7
{
8
void
Bar
(
C c
)
9
{
10
c
.
m
();
11
}
12
void
blah
(
C c
)
13
{
14
c
.
m
();
15
}
16
17
public static void
main
(
String
[]
args
)
18
{
19
}
20
}