aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runnable/procedure_cast.elna
blob: ee97a6b6096ffbc5c134c636da3edc9d95a5cd2d (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.