summaryrefslogtreecommitdiff
path: root/tests/source/test1.scade
blob: f247a577c5146e46b24b721f310b7d6fa7f2c6c5 (plain) (blame)
1
2
3
4
5
6
7
8
function test(i: int) returns(probe a, b, c: int; exit: bool)
let
    assume i_pos : i >= 0;
    exit = i >= 5;
    a = i;
    b = 0;
    c = 0;
tel