aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t0031.scala
blob: 6070a468329f2f49f3a22e79194d6924d5420b3d (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                        



                                                          
                 
         








                                               
                           



                               
object Main {

    trait Ensure[a] {
        def ensure(postcondition: a => Boolean): a
    }

    def require[a](precondition: => Boolean)(command: => a): Ensure[a] =
        if (precondition)
            new Ensure[a] {
            def ensure(postcondition: a => Boolean): a = {
                val result = command;
                if (postcondition(result)) result
                else sys.error("Assertion error")
                }
        }
        else
            sys.error("Assertion error");

    def arb[a](s: List[a]) =
        require (! s.isEmpty) {
           s.head
        } ensure (result => s contains result);

    def main(args: Array[String]) = {
        val s = List(1, 2);
        Console.println(arb(s))
    }

}