aboutsummaryrefslogtreecommitdiff
path: root/testsuite/compilable/assign_record_to_base.elna
blob: 7583c7093c695c6186ed3b9c4db87c7d042769e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type
  B = record
    x: Int
  end
  R = record(B)
    y: Int
  end

var
  x: ^B := nil
  y: ^R := nil

begin
  x := y;
  return 0
end.