aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/iso/fail/bug9.mod
blob: 0a4d4c51419d79d4bd336f7274b503f481292f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
MODULE bug9 ;

(* 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 ;

END bug9.