summaryrefslogtreecommitdiff
path: root/Test/test15/NullInModel.bpl
blob: 6bac5c7308b0f8832870486faa41f4c7deb80cc0 (plain)
1
2
3
4
5
6
7
// RUN: %boogie -printModel:2 %s > %t
// RUN: %diff %s.expect %t
procedure M (s: ref) {
  assert s != null;
}
type ref;
const null: ref;