9 lines
120 B
Text
9 lines
120 B
Text
|
|
/* valid rec comparisons */
|
||
|
|
let
|
||
|
|
type rectype = {name:string, id:int}
|
||
|
|
var b:rectype := nil
|
||
|
|
in
|
||
|
|
b = nil;
|
||
|
|
b <> nil
|
||
|
|
end
|