(root)/
gcc-13.2.0/
gcc/
testsuite/
gm2/
iso/
fail/
bug10.mod
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.