summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI_4715.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc/resources/SI_4715.scala')
-rw-r--r--test/scaladoc/resources/SI_4715.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scaladoc/resources/SI_4715.scala b/test/scaladoc/resources/SI_4715.scala
index 29daf43717..de286956bc 100644
--- a/test/scaladoc/resources/SI_4715.scala
+++ b/test/scaladoc/resources/SI_4715.scala
@@ -1,7 +1,7 @@
class SI_4715 {
type :+:[X,Y] = Map[X,Y]
- val withType: Int :+: Double = error("")
+ val withType: Int :+: Double = sys.error("")
trait :-:[X,Y]
- val withTrait: Int :-: Double = error("")
+ val withTrait: Int :-: Double = sys.error("")
}