testsuite: C++ module tests
[gcc.git] / gcc / testsuite / g++.dg / modules / ns-dir-1_a.C
1 // { dg-additional-options -fmodules-ts }
2
3 export module bob;
4 // { dg-module-cmi bob }
5
6 namespace detail {
7 int i;
8 }
9
10 namespace elsewhere {
11
12 export inline void frob ()
13 {
14 using namespace detail;
15 i = 5;
16 }
17
18 }