summaryrefslogtreecommitdiff
path: root/test/files/pos/t0227.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t0227.scala')
-rw-r--r--test/files/pos/t0227.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t0227.scala b/test/files/pos/t0227.scala
index 8650350c4a..806b20d409 100644
--- a/test/files/pos/t0227.scala
+++ b/test/files/pos/t0227.scala
@@ -5,7 +5,7 @@ final class Settings {
abstract class Factory {
type libraryType <: Base
- final def apply(settings: Settings): libraryType = error("bla")
+ final def apply(settings: Settings): libraryType = sys.error("bla")
}
abstract class Base {
@@ -19,7 +19,7 @@ class SA(val settings: Settings) extends Base {
SD
) ::: settings.f(
SC
- )
+ )
}
object SC extends Factory {