blob: 825133dc1bd3430ec83d08f8a93e1a969f021b4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}
};
}
}
|