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

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

begin
  x := y;
end.