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

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

program()
begin
  assert(f())
end.