aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runnable/aggregate_equality.elna
blob: bfe2174d98e9feafb3f5168b6aebbacf4d7387ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
type
  R = record
    a: Int;
    b: Int
  end

proc f() -> Bool
return R{a: 1, b: 2} = R{a: 1, b: 2}

begin
  assert(f())
end.