summaryrefslogtreecommitdiffstats
path: root/test/input/Namespace-inline.cxx
blob: 9569ad3a6f1fbd8401be1b9573264c6eb8051ea1 (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;
    }
  }
}