1 // { dg-additional-options -fmodules-ts }
2 
3 export module std;
4 // { dg-module-cmi std }
5 
6 namespace std
7 {
frob()8 export int frob ()
9 {
10   return 1;
11 }
12 
13 }
14