1 // { dg-additional-options "-fmodules-ts -Wno-pedantic" }
2 module;
3 # 3 __FILE__ 1
4 
5 int v1;
6 
7 # 9 "" 2
8 export module b;
9 // { dg-module-cmi b }
10 
get()11 export inline auto get ()
12 {
13   return v1;
14 }
15 
16