summaryrefslogtreecommitdiff
path: root/test/files/pos/t4365/b_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t4365/b_1.scala')
-rw-r--r--test/files/pos/t4365/b_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t4365/b_1.scala b/test/files/pos/t4365/b_1.scala
index e1423813f1..1158db6c32 100644
--- a/test/files/pos/t4365/b_1.scala
+++ b/test/files/pos/t4365/b_1.scala
@@ -10,7 +10,7 @@ self =>
trait Transformed[+B] {
def length: Int = 0
- def apply(idx: Int): B = error("")
+ def apply(idx: Int): B = sys.error("")
}
trait Reversed extends Transformed[A] {