aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/iso/fail/bug10.mod
blob: 1779cd6efaf1f4c7356a085f9fa07bc5fdc19074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.