summaryrefslogtreecommitdiff
path: root/Chalice/tests/regressions/internal-bug-3.chalice
blob: 17b6dd2560361f18f0a1011163b34bb57253d954 (plain)
1
2
3
4
5
6
7
8
class C
{
  var f: int
  method M ()
    requires acc(f, 100-rd(non_existing_field))
  {
  }
}