summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/infer0.scala
blob: 894d5228b1890c0d69505eda60c0802cb8de241c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id$

import scala.util.continuations._


object Test {

  def test(x: => Int @cpsParam[String,Int]) = 7

  def main(args: Array[String]): Any = {
    test(8)
  }

}