8 lines
142 B
Text
8 lines
142 B
Text
/* error: syntax error, nil should not be preceded by type-id. */
|
|
let
|
|
type rectype = {name:string, id:int}
|
|
|
|
var a:= rectype nil
|
|
in
|
|
a
|
|
end
|