modern-compiler-ml/tiger/testcases/test44.tig

12 lines
132 B
Text
Raw Normal View History

/* valid nil initialization and assignment */
let
type rectype = {name:string, id:int}
var b:rectype := nil
in
b := nil
end