8 lines
140 B
Text
8 lines
140 B
Text
/* error: initializing nil expressions not constrained by record type */
|
|
let
|
|
type rectype = {name:string, id:int}
|
|
|
|
var a:= nil
|
|
in
|
|
a
|
|
end
|