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

$include <prelude.sail>

let I: int = 3

let B: bits(64) = get_slice_int(64, I, 0)

$property
function prop() -> bool = {
  3 == I & I - unsigned(B) == 0
}