summaryrefslogtreecommitdiff
path: root/test/disabled/continuations-neg/infer0.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-04-05 10:31:22 -0700
committerPaul Phillips <paulp@improving.org>2012-04-05 11:23:37 -0700
commit37eabf615afe3de9733ea41cc9c522df3e2a6b87 (patch)
tree459ff741c38fc98a60ccbce028aa944259ae06d3 /test/disabled/continuations-neg/infer0.scala
parentbb4935e92c26778a1d1096cd5cd66812a9122f66 (diff)
downloadscala-37eabf615afe3de9733ea41cc9c522df3e2a6b87.tar.gz
scala-37eabf615afe3de9733ea41cc9c522df3e2a6b87.tar.bz2
scala-37eabf615afe3de9733ea41cc9c522df3e2a6b87.zip
Fix for continuations issue.
Avoid explicit type arguments which don't conform to bounds where they could be successfully inferred. I had to disable one "neg" test which is no longer neg. Can anyone clue me in as to whether it is important?
Diffstat (limited to 'test/disabled/continuations-neg/infer0.scala')
-rw-r--r--test/disabled/continuations-neg/infer0.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/disabled/continuations-neg/infer0.scala b/test/disabled/continuations-neg/infer0.scala
new file mode 100644
index 0000000000..6d97d7504d
--- /dev/null
+++ b/test/disabled/continuations-neg/infer0.scala
@@ -0,0 +1,12 @@
+// $Id$
+
+import scala.util.continuations._
+
+
+object Test {
+ def test(x: => Int @cpsParam[String,Int]) = 7
+
+ def main(args: Array[String]) {
+ test(8)
+ }
+}