1 // { dg-additional-options "-fmodules-ts" }
2 export module foo;
3 // { dg-module-cmi "foo" }
4 
bar()5 export int bar ()
6 {
7   return 1;
8 }
9 
baz()10 export int baz ()
11 {
12   return 2;
13 }
14 
quux()15 export int quux ()
16 {
17   return 3;
18 }
19 
20