Merge branch 'fix_another_sessions' into 'master'
[why3.git] / tests / test_args_parsing.mlw
blob7d32f879b0884b956126c0c189016428276bd2fe
1 module Test
3   (* Inspired from isqrt *)
4   use int.Int
5   
6   function sqr (x:int) : int = x * x
8   lemma sqr_non_neg: forall x:int. sqr x >= 0
10 end