summaryrefslogtreecommitdiff
path: root/test/pending/run/deprecated.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-10-02 23:19:16 +0000
committerPaul Phillips <paulp@improving.org>2010-10-02 23:19:16 +0000
commit943fbb1363345fdaca55e5df95059e8ce8c1344b (patch)
treeb12582afc26fe0e3d0dc4a502eef5e6a2d41bfb3 /test/pending/run/deprecated.scala
parent06aa1c9eff49d5190e82a72a876d7b3bd706d6d4 (diff)
downloadscala-943fbb1363345fdaca55e5df95059e8ce8c1344b.tar.gz
scala-943fbb1363345fdaca55e5df95059e8ce8c1344b.tar.bz2
scala-943fbb1363345fdaca55e5df95059e8ce8c1344b.zip
The next batch of tests put up a little more st...
The next batch of tests put up a little more struggle, but only a little. See test/pending/pos/unappgadteval.scala (the changes for which were in the previous commit) for an example of a test which might be on to something. Any idea what it would take to get it working? // the key lines case i @ Suc() => { (y: Int) => y + 1 } // a = Int => Int case f @ Lam[b,c](x, e) => { (y: b) => eval(e, env.extend(x, y)) } // a = b=>c No review.
Diffstat (limited to 'test/pending/run/deprecated.scala')
-rw-r--r--test/pending/run/deprecated.scala35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/pending/run/deprecated.scala b/test/pending/run/deprecated.scala
deleted file mode 100644
index 122e339d2f..0000000000
--- a/test/pending/run/deprecated.scala
+++ /dev/null
@@ -1,35 +0,0 @@
-object Test {
- abstract class AbstractStuff {
- def dostuff: Unit
- }
-
- [postabstract]
- class BlueStuff extends AbstractStuff {
- [deprecated] def dostuff = Console.println("blue")
- def five = "five"
- }
-
- class LightBlueStuff extends BlueStuff {
- [deprecated] override def dostuff = {Console.println("light blue")}
-
- // warning: deprecated method overrides a concrete method
- [deprecated] override def five = "light five"
- }
-
- // warning: not marked as postabstract
- class RedStuff extends AbstractStuff {
- [deprecated] def dostuff = Console.println("red")
- }
-
-
- def main(args: Array[String]) {
- // warning: BlueStuff will be abstract after deprecated methods are removed
- val blue = new BlueStuff
-
- // warning: RedStuff will be abstract after deprecated methods are removed
- val red = new RedStuff
-
- // warning: dostuff is deprecated
- blue.dostuff
- }
-}