Commit 62deb211 by Tom Tromey Committed by Tom Tromey

For PR java/5641:

	* libjava.compile/PR5641.xfail: New file.
	* libjava.compile/PR5641.java: New file.

From-SVN: r49660
parent 96b99104
2002-02-10 Tom Tromey <tromey@redhat.com>
For PR java/5641:
* libjava.compile/PR5641.xfail: New file.
* libjava.compile/PR5641.java: New file.
2002-02-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2002-02-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* lib/libjava.exp (libjava_find_lib): Remove duplicate .la files. * lib/libjava.exp (libjava_find_lib): Remove duplicate .la files.
......
interface I
{
void m();
}
abstract class C implements I {}
class Foo
{
void Bar(C c)
{
c.m();
}
void blah(C c)
{
c.m();
}
public static void main (String[] args)
{
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment