summaryrefslogtreecommitdiffstats
path: root/test/input/Namespace-inline.cxx
blob: 3df5602a2e027caa9fdb1ceb89948302bc912d0a (plain)
1
2
3
4
5
6
7
8
9
#pragma clang diagnostic ignored "-Wc++11-extensions"
namespace start {
inline namespace level1 {
struct A;
inline namespace level2 {
struct B;
}
}
}