summaryrefslogtreecommitdiff
path: root/Test/bitvectors/bv6.bpl
blob: ca8f8367f3d1cdf96f67e8f77939a56cf1c73da3 (plain)
1
2
3
4
5
6
7
8
9

procedure Q() returns () {
  var x : bv32, y : bv16;

  x := y ++ y;
  assert x[16:0] == y;
  assert x == x[16:0] ++ y;
  assert x[17:1] == y;     // should not be verifiable
}