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

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

program()
begin
  x := y;
return 0u8

end.