aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runnable/procedure_cast.elna
blob: 27977e10d25c82ef4f575681d8e56819bfe4ceae (plain)
1
2
3
4
5
6
7
8
9
var cb: proc(x: ^Char): Int

proc probe_int(x: ^Int): Int
return 42

begin
  cb := cast(probe_int: proc(x: ^Char): Int);
  assert(cb(nil) = 42)
end.