re PR java/17500 (Anonymous inner class compile freakout)
PR java/17500: * testsuite/libjava.compile/pr17500.java: New file. From-SVN: r88107
This commit is contained in:
parent
27a92d683b
commit
4b2582f055
2 changed files with 33 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-09-25 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
PR java/17500:
|
||||
* testsuite/libjava.compile/pr17500.java: New file.
|
||||
|
||||
2004-09-25 Shashank Bapat <shashankbapat@yahoo.com>
|
||||
Mark Wielaard <mark@klomp.org>
|
||||
|
||||
|
|
28
libjava/testsuite/libjava.compile/pr17500.java
Normal file
28
libjava/testsuite/libjava.compile/pr17500.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
// gcj had a problem compiling code where two anonymous classes had
|
||||
// captured constructor arguments of the same type but with different
|
||||
// names.
|
||||
|
||||
public class pr17500
|
||||
{
|
||||
public Object m1 (final Object one)
|
||||
{
|
||||
return new Comparable()
|
||||
{
|
||||
public int compareTo(Object other)
|
||||
{
|
||||
return one == other ? 0 : 1;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
public Object m2 (final Object two)
|
||||
{
|
||||
return new Comparable()
|
||||
{
|
||||
public int compareTo(Object other)
|
||||
{
|
||||
return two == other ? 0 : 1;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue