summaryrefslogtreecommitdiff
path: root/test/files/neg/caseinherit.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-07 11:50:25 +0000
committerPaul Phillips <paulp@improving.org>2011-03-07 11:50:25 +0000
commit5f491e5d037b799476747f0dee6ea50fe87c269b (patch)
tree8ade8ac91441e620a3539ec4b1d49d5196547a4c /test/files/neg/caseinherit.scala
parentca392540e36bf1fc52350901b3faf5bc08f4175c (diff)
downloadscala-5f491e5d037b799476747f0dee6ea50fe87c269b.tar.gz
scala-5f491e5d037b799476747f0dee6ea50fe87c269b.tar.bz2
scala-5f491e5d037b799476747f0dee6ea50fe87c269b.zip
Raised the scariness of the case class deprecat...
Raised the scariness of the case class deprecation message. (I hope you don't mind, hubert, I like writing scary messages.) Closes #4109 I suppose, no review.
Diffstat (limited to 'test/files/neg/caseinherit.scala')
-rw-r--r--test/files/neg/caseinherit.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/caseinherit.scala b/test/files/neg/caseinherit.scala
new file mode 100644
index 0000000000..fdac97c98e
--- /dev/null
+++ b/test/files/neg/caseinherit.scala
@@ -0,0 +1,6 @@
+case class A(x: Int)
+case class B(y: Int) extends A(y)
+case object Bippy extends A(55)
+
+class Innocent extends A(5)
+case class Dingus(y: Int) extends Innocent \ No newline at end of file