blob: 1779cd6efaf1f4c7356a085f9fa07bc5fdc19074 [file] [log] [blame]
MODULE bug10 ;
(* Missing import; Using the element in an expression crashes the compiler. *)
(* Using the element in an assignment is working. *)
FROM ChanConsts IMPORT (*read, text,*) FlagSet;
VAR flags:FlagSet;
BEGIN
flags:=read+text;
END bug10.