summaryrefslogtreecommitdiff
path: root/test/smt/trivial_assert_2.unsat.sail
blob: cfc1a5f32178d1d027af64d5f50ab0f2f17f2972 (plain)
1
2
3
4
5
6
7
8
9
10
11
default Order dec

$include <prelude.sail>

$property
function prop(x: int, y: int) -> bool = {
  if x != y then {
    assert(x != y);
    true
  } else true
}