summaryrefslogtreecommitdiff
path: root/test/files/pos/t3363-old.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3363-old.scala')
-rw-r--r--test/files/pos/t3363-old.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t3363-old.scala b/test/files/pos/t3363-old.scala
index bae54084ea..c08cf2a6b6 100644
--- a/test/files/pos/t3363-old.scala
+++ b/test/files/pos/t3363-old.scala
@@ -7,7 +7,7 @@ object TestCase {
//if you inherit from MapOps[T] instead of MapOps[F] then code compiles fine
implicit def map2ops[T,F](fs: Map[T,F]) = new MapOps[F] {
//if you remove this line, then code compiles
- lazy val m: Manifest[T] = error("just something to make it compile")
+ lazy val m: Manifest[T] = sys.error("just something to make it compile")
def is(xs: List[T]) = List(xs)
}