summaryrefslogtreecommitdiff
path: root/test/files/neg/caseinherit.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-15 06:18:02 +0000
committerPaul Phillips <paulp@improving.org>2011-03-15 06:18:02 +0000
commitc45095387566fc7403f04c55ac0e3abcf34bfc52 (patch)
treec1b1552269ec1eac166893eab79f137009e69836 /test/files/neg/caseinherit.check
parent06a98d22ce16aae01757d7aceaad9b7fb3a9d903 (diff)
downloadscala-c45095387566fc7403f04c55ac0e3abcf34bfc52.tar.gz
scala-c45095387566fc7403f04c55ac0e3abcf34bfc52.tar.bz2
scala-c45095387566fc7403f04c55ac0e3abcf34bfc52.zip
Slight tweak to case class deprecation message,...
Slight tweak to case class deprecation message, no review.
Diffstat (limited to 'test/files/neg/caseinherit.check')
-rw-r--r--test/files/neg/caseinherit.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/caseinherit.check b/test/files/neg/caseinherit.check
index c0886cb7ff..5630da2a3e 100644
--- a/test/files/neg/caseinherit.check
+++ b/test/files/neg/caseinherit.check
@@ -1,10 +1,10 @@
-caseinherit.scala:2: error: case class `class B' has case ancestor `class A'. Case inheritance has potentially dangerous bugs which are unlikely to be fixed. You are strongly encouraged to instead use extractors to pattern match on non-leaf nodes.
+caseinherit.scala:2: error: case class `class B' has case ancestor `class A'. Case-to-case inheritance has potentially dangerous bugs which are unlikely to be fixed. You are strongly encouraged to instead use extractors to pattern match on non-leaf nodes.
case class B(y: Int) extends A(y)
^
-caseinherit.scala:3: error: case class `object Bippy' has case ancestor `class A'. Case inheritance has potentially dangerous bugs which are unlikely to be fixed. You are strongly encouraged to instead use extractors to pattern match on non-leaf nodes.
+caseinherit.scala:3: error: case class `object Bippy' has case ancestor `class A'. Case-to-case inheritance has potentially dangerous bugs which are unlikely to be fixed. You are strongly encouraged to instead use extractors to pattern match on non-leaf nodes.
case object Bippy extends A(55)
^
-caseinherit.scala:6: error: case class `class Dingus' has case ancestor `class A'. Case inheritance has potentially dangerous bugs which are unlikely to be fixed. You are strongly encouraged to instead use extractors to pattern match on non-leaf nodes.
+caseinherit.scala:6: error: case class `class Dingus' has case ancestor `class A'. Case-to-case inheritance has potentially dangerous bugs which are unlikely to be fixed. You are strongly encouraged to instead use extractors to pattern match on non-leaf nodes.
case class Dingus(y: Int) extends Innocent
^
three errors found