From e9978c03c791f306dbdc07a28416555656211a09 Mon Sep 17 00:00:00 2001 From: Abel Nieto Date: Tue, 23 Oct 2018 11:39:53 -0400 Subject: [PATCH] Remove error tag from positive test It looks like it's copypasta from when the test was added. --- tests/pos/i1747.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pos/i1747.scala b/tests/pos/i1747.scala index b8be2433abc6..9be62a10a084 100644 --- a/tests/pos/i1747.scala +++ b/tests/pos/i1747.scala @@ -1,3 +1,3 @@ abstract class Coll[E] extends java.util.Collection[E] { - override def toArray[T](a: Array[T with Object]): Array[T with Object] = ??? // error: cannot override + override def toArray[T](a: Array[T with Object]): Array[T with Object] = ??? }