summaryrefslogtreecommitdiff
path: root/Test/bitvectors/bv10.bpl
blob: 99ee6f86b8ea428696625376fd43a8623c1c9c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %boogie %s > %t
// RUN: %diff %s.expect %t
var x: bv32;

procedure main() 
modifies x;
{

  x := 0bv32;
  assume x == 1bv32;
  assert false;
}