moreSpecific cleanup

This commit is contained in:
Anna Kozlova
2013-08-15 17:38:03 +04:00
parent b837027ea3
commit e006534d08
5 changed files with 52 additions and 45 deletions
@@ -19,7 +19,7 @@ abstract class A {
abstract void foo(int... x);
{
foo<error descr="Ambiguous method call: both 'A.foo(Object...)' and 'A.foo(int...)' match">(1)</error>;
foo(1);
}
}
abstract class A1 {